From acbf27e93806f53fd18ec83f116f68c29baec5c8 Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期六, 17 八月 2024 15:37:39 +0800 Subject: [PATCH] 删除日志文件 --- bin/run-modules-file.bat | 14 ++ /dev/null | 288 ----------------------------------------- bin/run-modules-system.bat | 14 ++ bin/clean.bat | 12 + bin/run-monitor.bat | 14 ++ bin/run-modules-gen.bat | 14 ++ bin/run-gateway.bat | 14 ++ bin/package.bat | 12 + bin/run-auth.bat | 14 ++ bin/run-modules-job.bat | 14 ++ 10 files changed, 122 insertions(+), 288 deletions(-) diff --git a/bin/clean.bat b/bin/clean.bat new file mode 100644 index 0000000..24c0974 --- /dev/null +++ b/bin/clean.bat @@ -0,0 +1,12 @@ +@echo off +echo. +echo [��Ϣ] ������target����·���� +echo. + +%~d0 +cd %~dp0 + +cd .. +call mvn clean + +pause \ No newline at end of file diff --git a/bin/package.bat b/bin/package.bat new file mode 100644 index 0000000..c693ec0 --- /dev/null +++ b/bin/package.bat @@ -0,0 +1,12 @@ +@echo off +echo. +echo [��Ϣ] ���Web���̣�����war/jar���ļ��� +echo. + +%~d0 +cd %~dp0 + +cd .. +call mvn clean package -Dmaven.test.skip=true + +pause \ No newline at end of file diff --git a/bin/run-auth.bat b/bin/run-auth.bat new file mode 100644 index 0000000..0d0952a --- /dev/null +++ b/bin/run-auth.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Auth���̡� +echo. + +cd %~dp0 +cd ../ruoyi-auth/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-auth.jar + +cd bin +pause \ No newline at end of file diff --git a/bin/run-gateway.bat b/bin/run-gateway.bat new file mode 100644 index 0000000..e43d60b --- /dev/null +++ b/bin/run-gateway.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Gateway���̡� +echo. + +cd %~dp0 +cd ../ruoyi-gateway/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-gateway.jar + +cd bin +pause \ No newline at end of file diff --git a/bin/run-modules-file.bat b/bin/run-modules-file.bat new file mode 100644 index 0000000..6d89c90 --- /dev/null +++ b/bin/run-modules-file.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Modules-File���̡� +echo. + +cd %~dp0 +cd ../ruoyi-modules/ruoyi-file/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-modules-file.jar + +cd bin +pause \ No newline at end of file diff --git a/bin/run-modules-gen.bat b/bin/run-modules-gen.bat new file mode 100644 index 0000000..0a4c390 --- /dev/null +++ b/bin/run-modules-gen.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Modules-Gen���̡� +echo. + +cd %~dp0 +cd ../ruoyi-modules/ruoyi-gen/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-modules-gen.jar + +cd bin +pause \ No newline at end of file diff --git a/bin/run-modules-job.bat b/bin/run-modules-job.bat new file mode 100644 index 0000000..443e59d --- /dev/null +++ b/bin/run-modules-job.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Modules-Job���̡� +echo. + +cd %~dp0 +cd ../ruoyi-modules/ruoyi-job/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-modules-job.jar + +cd bin +pause \ No newline at end of file diff --git a/bin/run-modules-system.bat b/bin/run-modules-system.bat new file mode 100644 index 0000000..26db55e --- /dev/null +++ b/bin/run-modules-system.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Modules-System���̡� +echo. + +cd %~dp0 +cd ../ruoyi-modules/ruoyi-system/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-modules-system.jar + +cd bin +pause \ No newline at end of file diff --git a/bin/run-monitor.bat b/bin/run-monitor.bat new file mode 100644 index 0000000..3e8e322 --- /dev/null +++ b/bin/run-monitor.bat @@ -0,0 +1,14 @@ +@echo off +echo. +echo [��Ϣ] ʹ��Jar��������Monitor���̡� +echo. + +cd %~dp0 +cd ../ruoyi-visual/ruoyi-monitor/target + +set JAVA_OPTS=-Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m + +java -Dfile.encoding=utf-8 %JAVA_OPTS% -jar ruoyi-visual-monitor.jar + +cd bin +pause \ No newline at end of file diff --git a/logs/ruoyi-account/error.log b/logs/ruoyi-account/error.log deleted file mode 100644 index c415c92..0000000 --- a/logs/ruoyi-account/error.log +++ /dev/null @@ -1,1072 +0,0 @@ -16:50:10.537 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAppCouponController': Unsatisfied dependency expressed through field 'tAppCouponService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAppCouponServiceImpl': Unsatisfied dependency expressed through field 'otherClient'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.OtherClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.account.RuoYiAccountApplication.main(RuoYiAccountApplication.java:23) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAppCouponServiceImpl': Unsatisfied dependency expressed through field 'otherClient'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.OtherClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.OtherClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 34 common frames omitted -Caused by: java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at feign.Util.checkState(Util.java:136) - at org.springframework.cloud.openfeign.annotation.RequestParamParameterProcessor.processArgument(RequestParamParameterProcessor.java:63) - at org.springframework.cloud.openfeign.support.SpringMvcContract.processAnnotationsOnParameter(SpringMvcContract.java:280) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:126) - at org.springframework.cloud.openfeign.support.SpringMvcContract.parseAndValidateMetadata(SpringMvcContract.java:193) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:65) - at com.alibaba.cloud.sentinel.feign.SentinelContractHolder.parseAndValidateMetadata(SentinelContractHolder.java:49) - at feign.ReflectiveFeign$ParseHandlersByName.apply(ReflectiveFeign.java:151) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:49) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 42 common frames omitted -16:54:15.006 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TAppUserController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.account.RuoYiAccountApplication.main(RuoYiAccountApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at feign.Util.checkState(Util.java:136) - at org.springframework.cloud.openfeign.annotation.RequestParamParameterProcessor.processArgument(RequestParamParameterProcessor.java:63) - at org.springframework.cloud.openfeign.support.SpringMvcContract.processAnnotationsOnParameter(SpringMvcContract.java:280) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:126) - at org.springframework.cloud.openfeign.support.SpringMvcContract.parseAndValidateMetadata(SpringMvcContract.java:193) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:65) - at com.alibaba.cloud.sentinel.feign.SentinelContractHolder.parseAndValidateMetadata(SentinelContractHolder.java:49) - at feign.ReflectiveFeign$ParseHandlersByName.apply(ReflectiveFeign.java:151) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:49) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 30 common frames omitted -17:00:21.969 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TAppUserController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ExchangeOrderClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ExchangeOrderFallbackFactory found for feign client ChargingOrderClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.account.RuoYiAccountApplication.main(RuoYiAccountApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ExchangeOrderClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ExchangeOrderFallbackFactory found for feign client ChargingOrderClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ExchangeOrderFallbackFactory found for feign client ChargingOrderClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 30 common frames omitted -17:39:47.168 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 57 milliseconds, 524000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c0ca9e5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:47.738 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 134 milliseconds, 965100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@16607a6[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:50.391 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 66 milliseconds, 251000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@76d960c0[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:50.870 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 823600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66aea21f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:53.646 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 232200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a8cd39f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:54.120 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 101600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1b09d552[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:56.975 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 547000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f2ad062[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:57.453 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 658400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@353a07cf[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.396 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 449100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@456e0eb5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.837 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:00.868 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 979800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5b8f555f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.947 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:01.056 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:03.278 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:03.389 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:03.496 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:03.909 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 922500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59a82d25[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:04.383 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 818800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@29416aea[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:07.727 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 198 milliseconds, 403100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c1f8920[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:07.730 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:07.867 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:08.024 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:08.079 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 79 milliseconds, 410600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@515ef2ef[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:11.532 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 974900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@434a51c1[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:11.805 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 101000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@205217b4[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:15.354 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 101100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4c2066e6[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:15.609 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 575400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a380f2a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:16.144 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:16.254 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:16.365 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:19.274 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 896900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@743a53ad[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:19.542 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 370900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e4796a7[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:23.285 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 523600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66614c29[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:23.572 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 188900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66d1a05c[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:27.393 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 381600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a774d5f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:27.697 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 194600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ba9671d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:31.639 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 9600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@288a2f54[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:31.948 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 37 milliseconds, 285000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@57db3c8[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:32.711 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:32.835 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:32.943 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:36.075 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 213400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ab031ae[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:36.280 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 845100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5fb5c030[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:40.491 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 764700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@27abcbb3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:40.715 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 632100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44017de9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:45.012 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 966500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f5e6495[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:45.234 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 371000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b04767d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:49.620 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 365000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@650cb914[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:49.841 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 736200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@652f00a2[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:54.329 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 515900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@38a1edf9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:54.550 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 109000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b9578bc[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:59.153 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 391200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3d151e95[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:59.376 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 377000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@745b5bbb[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:04.088 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 23 milliseconds, 249600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5fe678d5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:04.306 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 18 milliseconds, 488600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@267a0376[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:05.179 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:41:05.289 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:41:05.399 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzcxN30.ulgTweVUUJ-M8yTUuzec6MODbyzP4xjyaWqjeZzbEyg, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:41:09.145 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 55900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10c677cd[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:09.333 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 523300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@414752f9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:14.271 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 247100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@405c141b[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:14.489 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 43 milliseconds, 69700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a96fc6f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:19.480 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 865500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f7432c5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:19.716 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 57500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@aabafdf[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:24.819 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 270200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e649706[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:25.037 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 188700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a47e832[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:30.319 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 30 milliseconds, 456700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69f1772d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:30.461 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 843900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c902a3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:35.862 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 838300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@753803cb[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:36.005 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 554400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1855920c[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:41.489 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 861400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d9ae549[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:41.631 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 883700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@74edde9b[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:47.201 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 525200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@486223a2[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:47.343 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 722900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@40addc2[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:53.025 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 766100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2b3160dd[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:53.151 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 326800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f5c557d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2d8e9941, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1057230c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4689df39}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:54.716 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzY5N30.7IaUpxIfzsZkW0fu6IQv5i0g71eF5pHFfuloG4HwpJ4, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4c3c84323817f78baed8d87a350f345, Client-RequestTS=1723542114604, exConfigInfo=true, Timestamp=1723542114604}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:41:54.826 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzY5N30.7IaUpxIfzsZkW0fu6IQv5i0g71eF5pHFfuloG4HwpJ4, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4c3c84323817f78baed8d87a350f345, Client-RequestTS=1723542114604, exConfigInfo=true, Timestamp=1723542114604}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:41:54.936 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1NzY5N30.7IaUpxIfzsZkW0fu6IQv5i0g71eF5pHFfuloG4HwpJ4, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4c3c84323817f78baed8d87a350f345, Client-RequestTS=1723542114604, exConfigInfo=true, Timestamp=1723542114604}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY diff --git a/logs/ruoyi-account/info.2024-08-15.log b/logs/ruoyi-account/info.2024-08-15.log deleted file mode 100644 index d0eda0b..0000000 --- a/logs/ruoyi-account/info.2024-08-15.log +++ /dev/null @@ -1,45 +0,0 @@ -11:09:56.322 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:09:57.461 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8522620a-85d2-4621-bb49-dccaa55e63e5_config-0 -11:09:57.530 [main] INFO o.r.Reflections - [scan,232] - Reflections took 43 ms to scan 1 urls, producing 3 keys and 6 values -11:09:57.565 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values -11:09:57.579 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -11:09:57.767 [main] INFO o.r.Reflections - [scan,232] - Reflections took 183 ms to scan 229 urls, producing 0 keys and 0 values -11:09:57.777 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -11:09:57.793 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -11:09:57.807 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -11:09:57.964 [main] INFO o.r.Reflections - [scan,232] - Reflections took 153 ms to scan 229 urls, producing 0 keys and 0 values -11:09:57.968 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:09:57.969 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1899609393 -11:09:57.969 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/429639728 -11:09:57.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:09:57.975 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:09:57.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:10:00.118 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691400095_192.168.110.80_54158 -11:10:00.119 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Notify connected event to listeners. -11:10:00.120 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:10:00.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8522620a-85d2-4621-bb49-dccaa55e63e5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/977975287 -11:10:00.229 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:10:04.376 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -11:10:04.377 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:10:04.377 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:10:04.589 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:10:08.967 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:10:11.910 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 236f23f5-501b-410d-b034-9ae5d92a395f -11:10:11.910 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] RpcClient init label, labels = {module=naming, source=sdk} -11:10:11.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:10:11.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:10:11.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:10:11.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:10:12.039 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691412119_192.168.110.80_54201 -11:10:12.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:10:12.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/977975287 -11:10:12.042 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Notify connected event to listeners. -11:10:12.074 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"] -11:10:12.098 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-account 192.168.110.80:9200 register finished -11:10:12.569 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Receive server push request, request = NotifySubscriberRequest, requestId = 10 -11:10:12.574 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [236f23f5-501b-410d-b034-9ae5d92a395f] Ack server push request, request = NotifySubscriberRequest, requestId = 10 -11:10:13.033 [main] INFO c.r.a.RuoYiAccountApplication - [logStarted,61] - Started RuoYiAccountApplication in 17.746 seconds (JVM running for 19.333) -11:10:13.043 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account, group=DEFAULT_GROUP -11:10:13.044 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account-dev.yml, group=DEFAULT_GROUP -11:10:13.045 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account.yml, group=DEFAULT_GROUP -11:13:19.756 [http-nio-9200-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' diff --git a/logs/ruoyi-account/info.2024-08-16.log b/logs/ruoyi-account/info.2024-08-16.log deleted file mode 100644 index 1be31be..0000000 --- a/logs/ruoyi-account/info.2024-08-16.log +++ /dev/null @@ -1,90 +0,0 @@ -14:32:16.472 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:32:17.634 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0 -14:32:17.702 [main] INFO o.r.Reflections - [scan,232] - Reflections took 42 ms to scan 1 urls, producing 3 keys and 6 values -14:32:17.735 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values -14:32:17.748 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -14:32:17.935 [main] INFO o.r.Reflections - [scan,232] - Reflections took 183 ms to scan 229 urls, producing 0 keys and 0 values -14:32:17.946 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -14:32:17.961 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -14:32:17.975 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -14:32:18.128 [main] INFO o.r.Reflections - [scan,232] - Reflections took 150 ms to scan 229 urls, producing 0 keys and 0 values -14:32:18.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:32:18.133 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/337813415 -14:32:18.133 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/716206126 -14:32:18.134 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:32:18.134 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:32:18.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:32:19.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789940179_192.168.110.80_59508 -14:32:19.988 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Notify connected event to listeners. -14:32:19.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:32:19.989 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6c3f5442-1d49-4471-97bb-77d1d24238a5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/825791803 -14:32:20.070 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:32:22.967 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -14:32:22.968 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:32:22.968 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:32:23.136 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:32:26.886 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:32:29.764 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 563e5513-eb61-470f-a77f-d380b672ab80 -14:32:29.764 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] RpcClient init label, labels = {module=naming, source=sdk} -14:32:29.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:32:29.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:32:29.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:32:29.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:32:29.876 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789950158_192.168.110.80_59512 -14:32:29.877 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:32:29.877 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Notify connected event to listeners. -14:32:29.877 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/825791803 -14:32:29.916 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"] -14:32:29.946 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-account 192.168.110.80:9200 register finished -14:32:30.467 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Receive server push request, request = NotifySubscriberRequest, requestId = 121 -14:32:30.472 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [563e5513-eb61-470f-a77f-d380b672ab80] Ack server push request, request = NotifySubscriberRequest, requestId = 121 -14:32:30.850 [main] INFO c.r.a.RuoYiAccountApplication - [logStarted,61] - Started RuoYiAccountApplication in 15.5 seconds (JVM running for 16.881) -14:32:30.863 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account, group=DEFAULT_GROUP -14:32:30.863 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account-dev.yml, group=DEFAULT_GROUP -14:32:30.864 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account.yml, group=DEFAULT_GROUP -14:38:16.565 [http-nio-9200-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:43:08.222 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:43:09.356 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6413a19f-fa65-472d-bb11-fb62a6693997_config-0 -15:43:09.424 [main] INFO o.r.Reflections - [scan,232] - Reflections took 45 ms to scan 1 urls, producing 3 keys and 6 values -15:43:09.467 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -15:43:09.482 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -15:43:09.670 [main] INFO o.r.Reflections - [scan,232] - Reflections took 181 ms to scan 229 urls, producing 0 keys and 0 values -15:43:09.679 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -15:43:09.694 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -15:43:09.707 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -15:43:09.860 [main] INFO o.r.Reflections - [scan,232] - Reflections took 150 ms to scan 229 urls, producing 0 keys and 0 values -15:43:09.863 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:43:09.864 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1529010337 -15:43:09.864 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1198450099 -15:43:09.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:43:09.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:43:09.875 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:43:11.736 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723794191939_192.168.110.80_61406 -15:43:11.737 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Notify connected event to listeners. -15:43:11.737 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:43:11.738 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6413a19f-fa65-472d-bb11-fb62a6693997_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/125802780 -15:43:11.823 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:43:14.714 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -15:43:14.714 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:43:14.714 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:43:14.905 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:43:18.720 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:43:21.591 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d8acd1e8-049d-4efa-a9df-071bd56b7904 -15:43:21.591 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] RpcClient init label, labels = {module=naming, source=sdk} -15:43:21.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:43:21.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:43:21.594 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:43:21.594 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:43:21.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723794201994_192.168.110.80_61409 -15:43:21.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:43:21.708 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Notify connected event to listeners. -15:43:21.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/125802780 -15:43:21.741 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"] -15:43:21.766 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-account 192.168.110.80:9200 register finished -15:43:22.277 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Receive server push request, request = NotifySubscriberRequest, requestId = 182 -15:43:22.281 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8acd1e8-049d-4efa-a9df-071bd56b7904] Ack server push request, request = NotifySubscriberRequest, requestId = 182 -15:43:22.670 [main] INFO c.r.a.RuoYiAccountApplication - [logStarted,61] - Started RuoYiAccountApplication in 15.528 seconds (JVM running for 16.928) -15:43:22.681 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account, group=DEFAULT_GROUP -15:43:22.682 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account-dev.yml, group=DEFAULT_GROUP -15:43:22.682 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account.yml, group=DEFAULT_GROUP -15:59:35.729 [http-nio-9200-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' diff --git a/logs/ruoyi-account/info.log b/logs/ruoyi-account/info.log deleted file mode 100644 index 58f3880..0000000 --- a/logs/ruoyi-account/info.log +++ /dev/null @@ -1,206 +0,0 @@ -16:49:50.001 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:49:53.833 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0 -16:49:54.016 [main] INFO o.r.Reflections - [scan,232] - Reflections took 127 ms to scan 1 urls, producing 3 keys and 6 values -16:49:54.098 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values -16:49:54.122 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:49:54.557 [main] INFO o.r.Reflections - [scan,232] - Reflections took 430 ms to scan 228 urls, producing 0 keys and 0 values -16:49:54.573 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -16:49:54.598 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -16:49:54.667 [main] INFO o.r.Reflections - [scan,232] - Reflections took 64 ms to scan 1 urls, producing 2 keys and 8 values -16:49:55.075 [main] INFO o.r.Reflections - [scan,232] - Reflections took 400 ms to scan 228 urls, producing 0 keys and 0 values -16:49:55.080 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:49:55.081 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1680365850 -16:49:55.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/7575494 -16:49:55.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:49:55.090 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:49:55.109 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:50:01.110 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723539001431_192.168.110.85_59757 -16:50:01.112 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Notify connected event to listeners. -16:50:01.114 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:50:01.115 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9e47cd27-8991-4339-8df1-bbdfa5038ebd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1076039353 -16:50:01.264 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:50:05.641 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -16:50:05.642 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:50:05.642 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:50:05.913 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:50:10.451 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:53:59.457 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:54:01.519 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 265fb4c8-8226-4d08-a082-63c215986a1a_config-0 -16:54:01.611 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -16:54:01.660 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -16:54:01.681 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -16:54:01.972 [main] INFO o.r.Reflections - [scan,232] - Reflections took 286 ms to scan 228 urls, producing 0 keys and 0 values -16:54:01.986 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -16:54:02.006 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -16:54:02.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -16:54:02.248 [main] INFO o.r.Reflections - [scan,232] - Reflections took 221 ms to scan 228 urls, producing 0 keys and 0 values -16:54:02.253 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:54:02.254 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/168670597 -16:54:02.255 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/724886412 -16:54:02.256 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:54:02.258 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:54:02.273 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:54:05.242 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723539245573_192.168.110.85_59860 -16:54:05.244 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Notify connected event to listeners. -16:54:05.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:54:05.246 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [265fb4c8-8226-4d08-a082-63c215986a1a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/4573619 -16:54:05.488 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:54:09.695 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -16:54:09.696 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:54:09.696 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:54:09.950 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:54:14.889 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:59:53.345 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:00:07.116 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:00:08.906 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0 -17:00:09.022 [main] INFO o.r.Reflections - [scan,232] - Reflections took 63 ms to scan 1 urls, producing 3 keys and 6 values -17:00:09.074 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -17:00:09.094 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -17:00:09.370 [main] INFO o.r.Reflections - [scan,232] - Reflections took 269 ms to scan 228 urls, producing 0 keys and 0 values -17:00:09.386 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:00:09.405 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -17:00:09.423 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:00:09.656 [main] INFO o.r.Reflections - [scan,232] - Reflections took 229 ms to scan 228 urls, producing 0 keys and 0 values -17:00:09.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:00:09.662 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1512822728 -17:00:09.662 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/2091439256 -17:00:09.663 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:00:09.664 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:00:09.680 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:00:12.492 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723539612825_192.168.110.85_59988 -17:00:12.493 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Notify connected event to listeners. -17:00:12.495 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:00:12.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5953b6b6-a1b7-4e84-ad41-6a1828c54d2f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1447521302 -17:00:12.621 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:00:16.674 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -17:00:16.674 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:00:16.674 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:00:16.924 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:00:21.884 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:01:35.988 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:01:37.992 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 39b41856-f326-4250-a249-4805f4ed6deb_config-0 -17:01:38.099 [main] INFO o.r.Reflections - [scan,232] - Reflections took 74 ms to scan 1 urls, producing 3 keys and 6 values -17:01:38.148 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -17:01:38.167 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -17:01:38.482 [main] INFO o.r.Reflections - [scan,232] - Reflections took 308 ms to scan 228 urls, producing 0 keys and 0 values -17:01:38.504 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 5 values -17:01:38.526 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values -17:01:38.543 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:01:38.795 [main] INFO o.r.Reflections - [scan,232] - Reflections took 247 ms to scan 228 urls, producing 0 keys and 0 values -17:01:38.800 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:01:38.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/447144896 -17:01:38.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/892466122 -17:01:38.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:01:38.804 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:01:38.819 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:01:41.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723539702224_192.168.110.85_60037 -17:01:41.921 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Notify connected event to listeners. -17:01:41.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:01:41.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/584694804 -17:01:42.077 [main] INFO c.r.a.RuoYiAccountApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:01:46.858 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"] -17:01:46.858 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:01:46.859 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:01:47.153 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:01:52.892 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:01:57.425 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 918e33af-59ae-4699-b8f9-e2932aca1809 -17:01:57.426 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] RpcClient init label, labels = {module=naming, source=sdk} -17:01:57.430 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:01:57.430 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:01:57.431 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:01:57.431 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:01:57.556 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723539718022_192.168.110.85_60039 -17:01:57.556 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:01:57.556 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Notify connected event to listeners. -17:01:57.556 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/584694804 -17:01:57.606 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"] -17:01:57.641 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-account 192.168.204.1:9200 register finished -17:01:58.164 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Receive server push request, request = NotifySubscriberRequest, requestId = 196 -17:01:58.172 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Ack server push request, request = NotifySubscriberRequest, requestId = 196 -17:01:59.242 [main] INFO c.r.a.RuoYiAccountApplication - [logStarted,61] - Started RuoYiAccountApplication in 25.56 seconds (JVM running for 27.862) -17:01:59.257 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account, group=DEFAULT_GROUP -17:01:59.258 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account-dev.yml, group=DEFAULT_GROUP -17:01:59.259 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-account.yml, group=DEFAULT_GROUP -17:01:59.949 [RMI TCP Connection(4)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:01:59.986 [RMI TCP Connection(3)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:02:00.304 [RMI TCP Connection(3)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:39:44.090 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Server healthy check fail, currentConnection = 1723539702224_192.168.110.85_60037 -17:39:44.093 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:44.569 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Server healthy check fail, currentConnection = 1723539718022_192.168.110.85_60039 -17:39:44.569 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:50.398 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:50.873 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:53.649 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:54.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:56.976 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:57.454 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.398 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.869 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:03.910 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:04.384 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:07.728 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:08.079 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.534 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.806 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:15.355 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:15.611 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:19.275 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:19.545 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:23.287 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:23.574 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:27.394 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:27.701 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:31.640 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:31.950 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:36.076 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:36.285 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:40.492 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:40.716 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:45.013 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:45.235 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:49.622 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:49.842 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:54.331 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:54.551 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:59.154 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:59.377 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:04.090 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:04.307 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:09.146 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:09.334 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:14.272 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:14.491 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:19.482 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:19.718 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:24.820 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:25.038 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:30.324 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:30.465 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:35.864 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:36.006 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:41.490 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:41.632 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:47.203 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:47.344 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:53.028 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:53.154 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:56.057 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116545_192.168.110.85_61522 -17:41:56.059 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723539702224_192.168.110.85_60037 -17:41:56.059 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723539702224_192.168.110.85_60037 -17:41:56.060 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Notify disconnected event to listeners -17:41:56.061 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b41856-f326-4250-a249-4805f4ed6deb_config-0] Notify connected event to listeners. -17:41:56.183 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116677_192.168.110.85_61523 -17:41:56.183 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723539718022_192.168.110.85_60039 -17:41:56.183 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723539718022_192.168.110.85_60039 -17:41:56.183 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Notify disconnected event to listeners -17:41:56.185 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Notify connected event to listeners. -17:41:57.761 [nacos-grpc-client-executor-491] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Receive server push request, request = NotifySubscriberRequest, requestId = 212 -17:41:57.762 [nacos-grpc-client-executor-491] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [918e33af-59ae-4699-b8f9-e2932aca1809] Ack server push request, request = NotifySubscriberRequest, requestId = 212 -18:49:22.333 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -18:49:22.340 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -18:49:22.685 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -18:49:22.686 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1762ff7e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -18:49:22.687 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723542116677_192.168.110.85_61523 -18:49:22.691 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7312355d[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1295] -18:49:23.095 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -18:49:23.103 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. diff --git a/logs/ruoyi-auth/error.2024-08-15.log b/logs/ruoyi-auth/error.2024-08-15.log deleted file mode 100644 index 7a87406..0000000 --- a/logs/ruoyi-auth/error.2024-08-15.log +++ /dev/null @@ -1,929 +0,0 @@ -11:24:04.514 [http-nio-9100-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/logout',不支持'GET'请求 -14:52:42.876 [http-nio-9100-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:08.068 [http-nio-9100-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:14.369 [http-nio-9100-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:16.285 [http-nio-9100-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:54:08.321 [http-nio-9100-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:55:46.070 [http-nio-9100-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:36.784 [http-nio-9100-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:38.473 [http-nio-9100-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:39.389 [http-nio-9100-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:40.090 [http-nio-9100-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:40.701 [http-nio-9100-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:41.167 [http-nio-9100-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:41.583 [http-nio-9100-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:41.913 [http-nio-9100-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:42.195 [http-nio-9100-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:58:08.682 [http-nio-9100-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleServiceException,82] - 登录用户:admin 不存在 -com.ruoyi.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.ruoyi.auth.service.SysLoginService.login(SysLoginService.java:53) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:52) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) diff --git a/logs/ruoyi-auth/error.log b/logs/ruoyi-auth/error.log deleted file mode 100644 index 9933aeb..0000000 --- a/logs/ruoyi-auth/error.log +++ /dev/null @@ -1,118 +0,0 @@ -14:27:34.914 [http-nio-9100-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/login',发生未知异常. -java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 - at java.util.ArrayList.rangeCheck(ArrayList.java:657) - at java.util.ArrayList.get(ArrayList.java:433) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:60) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:27:43.043 [http-nio-9100-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/login',发生未知异常. -java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 - at java.util.ArrayList.rangeCheck(ArrayList.java:657) - at java.util.ArrayList.get(ArrayList.java:433) - at com.ruoyi.auth.controller.TokenController.login(TokenController.java:60) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) diff --git a/logs/ruoyi-auth/info.2024-08-05.log b/logs/ruoyi-auth/info.2024-08-05.log deleted file mode 100644 index 427f32f..0000000 --- a/logs/ruoyi-auth/info.2024-08-05.log +++ /dev/null @@ -1,52 +0,0 @@ -20:14:15.126 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -20:14:17.456 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0 -20:14:17.547 [main] INFO o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values -20:14:17.594 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -20:14:17.613 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -20:14:17.978 [main] INFO o.r.Reflections - [scan,232] - Reflections took 361 ms to scan 192 urls, producing 0 keys and 0 values -20:14:18.037 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -20:14:18.062 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 7 values -20:14:18.082 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values -20:14:18.365 [main] INFO o.r.Reflections - [scan,232] - Reflections took 280 ms to scan 192 urls, producing 0 keys and 0 values -20:14:18.370 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -20:14:18.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1403649277 -20:14:18.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/569661948 -20:14:18.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:14:18.373 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:14:18.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:14:23.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:14:24.773 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722860064690_192.168.110.85_59782 -20:14:24.775 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Notify connected event to listeners. -20:14:24.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:14:24.780 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d0d66a3-c28b-46bb-bb1f-c396898a1c4c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1884982716 -20:14:25.107 [main] INFO c.r.a.RuoYiAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -20:14:29.757 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9100"] -20:14:29.758 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:14:29.759 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -20:14:30.063 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:14:32.825 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:14:38.492 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d8b38e48-d2a0-4e50-a439-c6a84beeca99 -20:14:38.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] RpcClient init label, labels = {module=naming, source=sdk} -20:14:38.495 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:14:38.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:14:38.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:14:38.497 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:14:38.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722860078719_192.168.110.85_59799 -20:14:38.622 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Notify connected event to listeners. -20:14:38.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:14:38.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1884982716 -20:14:38.663 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9100"] -20:14:38.690 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-auth 192.168.204.1:9100 register finished -20:14:39.197 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Receive server push request, request = NotifySubscriberRequest, requestId = 24 -20:14:39.203 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d8b38e48-d2a0-4e50-a439-c6a84beeca99] Ack server push request, request = NotifySubscriberRequest, requestId = 24 -20:14:39.909 [main] INFO c.r.a.RuoYiAuthApplication - [logStarted,61] - Started RuoYiAuthApplication in 26.747 seconds (JVM running for 36.07) -20:14:39.923 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth.yml, group=DEFAULT_GROUP -20:14:39.925 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth-dev.yml, group=DEFAULT_GROUP -20:14:39.925 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth, group=DEFAULT_GROUP -20:14:40.474 [RMI TCP Connection(11)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:22:45.999 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -20:22:46.005 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -20:22:46.334 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -20:22:46.334 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6b05ddc0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:46.335 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1722860078719_192.168.110.85_59799 -20:22:46.335 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@796bfc9a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 105] diff --git a/logs/ruoyi-auth/info.2024-08-15.log b/logs/ruoyi-auth/info.2024-08-15.log deleted file mode 100644 index b91caca..0000000 --- a/logs/ruoyi-auth/info.2024-08-15.log +++ /dev/null @@ -1,95 +0,0 @@ -10:58:34.552 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -10:58:35.677 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0 -10:58:35.779 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -10:58:35.820 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -10:58:35.833 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -10:58:35.996 [main] INFO o.r.Reflections - [scan,232] - Reflections took 160 ms to scan 193 urls, producing 0 keys and 0 values -10:58:36.008 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -10:58:36.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -10:58:36.034 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -10:58:36.172 [main] INFO o.r.Reflections - [scan,232] - Reflections took 135 ms to scan 193 urls, producing 0 keys and 0 values -10:58:36.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -10:58:36.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2031467683 -10:58:36.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1758876146 -10:58:36.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -10:58:36.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -10:58:36.186 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -10:58:37.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723690717930_192.168.110.80_53638 -10:58:37.919 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Notify connected event to listeners. -10:58:37.920 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:58:37.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b24272c-126e-4ce7-bf69-446d04bac3e8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/355222677 -10:58:37.995 [main] INFO c.r.a.RuoYiAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -10:58:39.819 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9100"] -10:58:39.820 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -10:58:39.820 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -10:58:39.968 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -10:58:41.223 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -10:58:43.750 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b0219e22-a812-455d-b6a6-fd6132425037 -10:58:43.751 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] RpcClient init label, labels = {module=naming, source=sdk} -10:58:43.752 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -10:58:43.752 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -10:58:43.753 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -10:58:43.753 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -10:58:43.864 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723690723956_192.168.110.80_53646 -10:58:43.864 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Notify connected event to listeners. -10:58:43.864 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:58:43.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/355222677 -10:58:43.894 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9100"] -10:58:43.918 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-auth 192.168.110.80:9100 register finished -10:58:44.434 [main] INFO c.r.a.RuoYiAuthApplication - [logStarted,61] - Started RuoYiAuthApplication in 10.853 seconds (JVM running for 13.176) -10:58:44.445 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth.yml, group=DEFAULT_GROUP -10:58:44.446 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth-dev.yml, group=DEFAULT_GROUP -10:58:44.447 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth, group=DEFAULT_GROUP -10:58:44.489 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Receive server push request, request = NotifySubscriberRequest, requestId = 2 -10:58:44.492 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b0219e22-a812-455d-b6a6-fd6132425037] Ack server push request, request = NotifySubscriberRequest, requestId = 2 -11:18:51.051 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:18:52.153 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0 -11:18:52.202 [main] INFO o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 3 keys and 6 values -11:18:52.231 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -11:18:52.244 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -11:18:52.420 [main] INFO o.r.Reflections - [scan,232] - Reflections took 172 ms to scan 203 urls, producing 0 keys and 0 values -11:18:52.431 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -11:18:52.449 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -11:18:52.464 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -11:18:52.611 [main] INFO o.r.Reflections - [scan,232] - Reflections took 146 ms to scan 203 urls, producing 0 keys and 0 values -11:18:52.614 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:18:52.615 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/521270862 -11:18:52.615 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/724525007 -11:18:52.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:18:52.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:18:52.623 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:18:54.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691934342_192.168.110.80_54614 -11:18:54.323 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Notify connected event to listeners. -11:18:54.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:18:54.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48cf11d8-a4cb-42bb-8258-d77b4d87455a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/773059332 -11:18:54.397 [main] INFO c.r.a.RuoYiAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:18:56.394 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9100"] -11:18:56.394 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:18:56.394 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:18:56.565 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:18:57.742 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:19:00.319 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 850f25c0-5729-4966-ac1e-321ba013c2ed -11:19:00.319 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] RpcClient init label, labels = {module=naming, source=sdk} -11:19:00.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:19:00.321 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:19:00.321 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:19:00.321 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:19:00.436 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691940525_192.168.110.80_54626 -11:19:00.436 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:19:00.436 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Notify connected event to listeners. -11:19:00.436 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/773059332 -11:19:00.465 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9100"] -11:19:00.485 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-auth 192.168.110.80:9100 register finished -11:19:01.001 [main] INFO c.r.a.RuoYiAuthApplication - [logStarted,61] - Started RuoYiAuthApplication in 10.999 seconds (JVM running for 12.259) -11:19:01.009 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth.yml, group=DEFAULT_GROUP -11:19:01.010 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth-dev.yml, group=DEFAULT_GROUP -11:19:01.011 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth, group=DEFAULT_GROUP -11:19:01.035 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Receive server push request, request = NotifySubscriberRequest, requestId = 32 -11:19:01.041 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Ack server push request, request = NotifySubscriberRequest, requestId = 32 -11:24:04.485 [http-nio-9100-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:52:42.755 [nacos-grpc-client-executor-2567] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Receive server push request, request = NotifySubscriberRequest, requestId = 70 -14:52:42.756 [nacos-grpc-client-executor-2567] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Ack server push request, request = NotifySubscriberRequest, requestId = 70 -14:58:51.479 [nacos-grpc-client-executor-2641] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Receive server push request, request = NotifySubscriberRequest, requestId = 87 -14:58:51.481 [nacos-grpc-client-executor-2641] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Ack server push request, request = NotifySubscriberRequest, requestId = 87 -14:59:11.020 [nacos-grpc-client-executor-2645] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Receive server push request, request = NotifySubscriberRequest, requestId = 90 -14:59:11.022 [nacos-grpc-client-executor-2645] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [850f25c0-5729-4966-ac1e-321ba013c2ed] Ack server push request, request = NotifySubscriberRequest, requestId = 90 diff --git a/logs/ruoyi-auth/info.2024-08-16.log b/logs/ruoyi-auth/info.2024-08-16.log deleted file mode 100644 index 43f351f..0000000 --- a/logs/ruoyi-auth/info.2024-08-16.log +++ /dev/null @@ -1,118 +0,0 @@ -14:26:54.260 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:26:55.406 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0 -14:26:55.486 [main] INFO o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 1 urls, producing 3 keys and 6 values -14:26:55.517 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 4 keys and 9 values -14:26:55.535 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -14:26:55.730 [main] INFO o.r.Reflections - [scan,232] - Reflections took 193 ms to scan 193 urls, producing 0 keys and 0 values -14:26:55.740 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -14:26:55.752 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 7 values -14:26:55.769 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -14:26:55.901 [main] INFO o.r.Reflections - [scan,232] - Reflections took 130 ms to scan 193 urls, producing 0 keys and 0 values -14:26:55.904 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:26:55.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/721671471 -14:26:55.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/937437482 -14:26:55.906 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:26:55.906 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:26:55.915 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:26:57.887 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789618092_192.168.110.80_59242 -14:26:57.888 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Notify connected event to listeners. -14:26:57.888 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:26:57.889 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd1bcc03-51a8-44cf-b8fc-a9f222791520_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1753113235 -14:26:57.986 [main] INFO c.r.a.RuoYiAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:27:00.670 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9100"] -14:27:00.670 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:27:00.670 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:27:00.843 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:27:02.201 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:27:04.835 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1 -14:27:04.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] RpcClient init label, labels = {module=naming, source=sdk} -14:27:04.837 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:27:04.837 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:27:04.837 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:27:04.838 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:27:04.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789625229_192.168.110.80_59247 -14:27:04.955 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Notify connected event to listeners. -14:27:04.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:27:04.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1753113235 -14:27:04.983 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9100"] -14:27:05.018 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-auth 192.168.110.80:9100 register finished -14:27:05.547 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Receive server push request, request = NotifySubscriberRequest, requestId = 107 -14:27:05.551 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Ack server push request, request = NotifySubscriberRequest, requestId = 107 -14:27:05.577 [main] INFO c.r.a.RuoYiAuthApplication - [logStarted,61] - Started RuoYiAuthApplication in 12.392 seconds (JVM running for 14.567) -14:27:05.584 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth.yml, group=DEFAULT_GROUP -14:27:05.585 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth-dev.yml, group=DEFAULT_GROUP -14:27:05.585 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth, group=DEFAULT_GROUP -14:27:32.783 [http-nio-9100-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:27:33.578 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Receive server push request, request = NotifySubscriberRequest, requestId = 109 -14:27:33.579 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c7340eb-f89b-4cad-9cb2-ec42c6fb33a1] Ack server push request, request = NotifySubscriberRequest, requestId = 109 -14:28:35.081 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:28:36.202 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0 -14:28:36.260 [main] INFO o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 3 keys and 6 values -14:28:36.299 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 4 keys and 9 values -14:28:36.312 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -14:28:36.479 [main] INFO o.r.Reflections - [scan,232] - Reflections took 164 ms to scan 193 urls, producing 0 keys and 0 values -14:28:36.490 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -14:28:36.505 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -14:28:36.517 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -14:28:36.653 [main] INFO o.r.Reflections - [scan,232] - Reflections took 131 ms to scan 193 urls, producing 0 keys and 0 values -14:28:36.654 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:28:36.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/864657274 -14:28:36.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/2023349777 -14:28:36.657 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:28:36.658 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:28:36.666 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:28:38.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789718607_192.168.110.80_59318 -14:28:38.394 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Notify connected event to listeners. -14:28:38.395 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:28:38.395 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de82ac10-2a81-4f09-866d-3e307f2fabe7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1352743983 -14:28:38.469 [main] INFO c.r.a.RuoYiAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:28:40.333 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9100"] -14:28:40.334 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:28:40.334 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:28:40.484 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:28:41.753 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:28:44.307 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fd0595cb-7b0e-4bac-9664-a43c06d313b6 -14:28:44.307 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] RpcClient init label, labels = {module=naming, source=sdk} -14:28:44.309 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:28:44.309 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:28:44.309 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:28:44.310 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:28:44.422 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789724701_192.168.110.80_59320 -14:28:44.423 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:28:44.423 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Notify connected event to listeners. -14:28:44.424 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1352743983 -14:28:44.464 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9100"] -14:28:44.485 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-auth 192.168.110.80:9100 register finished -14:28:44.989 [main] INFO c.r.a.RuoYiAuthApplication - [logStarted,61] - Started RuoYiAuthApplication in 10.928 seconds (JVM running for 12.177) -14:28:44.997 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth.yml, group=DEFAULT_GROUP -14:28:44.998 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth-dev.yml, group=DEFAULT_GROUP -14:28:44.999 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth, group=DEFAULT_GROUP -14:28:45.023 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 111 -14:28:45.028 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 111 -14:29:58.527 [http-nio-9100-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:29:59.309 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 113 -14:29:59.309 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 113 -15:01:12.411 [nacos-grpc-client-executor-395] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 124 -15:01:12.413 [nacos-grpc-client-executor-395] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 124 -15:01:38.670 [nacos-grpc-client-executor-400] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 127 -15:01:38.672 [nacos-grpc-client-executor-400] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 127 -15:03:41.529 [nacos-grpc-client-executor-425] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 131 -15:03:41.534 [nacos-grpc-client-executor-425] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 131 -15:04:00.656 [nacos-grpc-client-executor-429] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 135 -15:04:00.661 [nacos-grpc-client-executor-429] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 135 -15:12:26.304 [nacos-grpc-client-executor-530] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 138 -15:12:26.309 [nacos-grpc-client-executor-530] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 138 -15:12:45.240 [nacos-grpc-client-executor-533] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 141 -15:12:45.241 [nacos-grpc-client-executor-533] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 141 -15:13:58.244 [nacos-grpc-client-executor-548] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 145 -15:13:58.246 [nacos-grpc-client-executor-548] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 145 -15:14:17.975 [nacos-grpc-client-executor-553] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 149 -15:14:17.976 [nacos-grpc-client-executor-553] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 149 -15:16:04.437 [nacos-grpc-client-executor-574] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 152 -15:16:04.438 [nacos-grpc-client-executor-574] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 152 -15:16:23.388 [nacos-grpc-client-executor-578] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 155 -15:16:23.390 [nacos-grpc-client-executor-578] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 155 -15:38:26.457 [nacos-grpc-client-executor-842] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 170 -15:38:26.459 [nacos-grpc-client-executor-842] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 170 -15:38:47.997 [nacos-grpc-client-executor-849] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Receive server push request, request = NotifySubscriberRequest, requestId = 173 -15:38:47.999 [nacos-grpc-client-executor-849] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fd0595cb-7b0e-4bac-9664-a43c06d313b6] Ack server push request, request = NotifySubscriberRequest, requestId = 173 diff --git a/logs/ruoyi-auth/info.log b/logs/ruoyi-auth/info.log deleted file mode 100644 index d7dc22e..0000000 --- a/logs/ruoyi-auth/info.log +++ /dev/null @@ -1,53 +0,0 @@ -11:25:08.442 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:25:10.826 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0 -11:25:10.962 [main] INFO o.r.Reflections - [scan,232] - Reflections took 89 ms to scan 1 urls, producing 3 keys and 6 values -11:25:11.025 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 4 keys and 9 values -11:25:11.056 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 10 values -11:25:11.351 [main] INFO o.r.Reflections - [scan,232] - Reflections took 290 ms to scan 192 urls, producing 0 keys and 0 values -11:25:11.365 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -11:25:11.384 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -11:25:11.399 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -11:25:11.607 [main] INFO o.r.Reflections - [scan,232] - Reflections took 204 ms to scan 192 urls, producing 0 keys and 0 values -11:25:11.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:25:11.649 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/772147225 -11:25:11.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1120043781 -11:25:11.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:25:11.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:25:11.676 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:25:15.771 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001116818_192.168.110.85_59968 -11:25:15.772 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Notify connected event to listeners. -11:25:15.773 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:25:15.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6f88f24b-080f-4d48-9577-f781a4d74a2a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/883087072 -11:25:15.947 [main] INFO c.r.a.RuoYiAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:25:22.814 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9100"] -11:25:22.815 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:25:22.815 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:25:23.072 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:25:25.705 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:25:31.476 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116 -11:25:31.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] RpcClient init label, labels = {module=naming, source=sdk} -11:25:31.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:25:31.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:25:31.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:25:31.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:25:31.607 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001132934_192.168.110.85_59977 -11:25:31.607 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:25:31.607 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/883087072 -11:25:31.608 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Notify connected event to listeners. -11:25:31.662 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9100"] -11:25:31.729 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-auth 192.168.204.1:9100 register finished -11:25:32.276 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Receive server push request, request = NotifySubscriberRequest, requestId = 37 -11:25:32.280 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Ack server push request, request = NotifySubscriberRequest, requestId = 37 -11:25:32.847 [main] INFO c.r.a.RuoYiAuthApplication - [logStarted,61] - Started RuoYiAuthApplication in 27.443 seconds (JVM running for 30.064) -11:25:32.861 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth.yml, group=DEFAULT_GROUP -11:25:32.863 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth-dev.yml, group=DEFAULT_GROUP -11:25:32.863 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-auth, group=DEFAULT_GROUP -11:25:33.309 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -11:58:04.142 [nacos-grpc-client-executor-395] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Receive server push request, request = NotifySubscriberRequest, requestId = 83 -11:58:04.146 [nacos-grpc-client-executor-395] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e7e3c9f-8cb5-4c21-a2f3-f8da0555a116] Ack server push request, request = NotifySubscriberRequest, requestId = 83 -12:05:18.721 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -12:05:18.727 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -12:05:19.044 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -12:05:19.045 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7041792d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -12:05:19.045 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723001132934_192.168.110.85_59977 -12:05:19.051 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@111ba8a7[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 483] diff --git a/logs/ruoyi-chargingPile/error.2024-08-07.log b/logs/ruoyi-chargingPile/error.2024-08-07.log deleted file mode 100644 index e543c22..0000000 --- a/logs/ruoyi-chargingPile/error.2024-08-07.log +++ /dev/null @@ -1,892 +0,0 @@ -15:56:22.513 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -16:01:55.594 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client sysRoleClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -16:03:47.269 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -16:08:28.133 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -16:10:17.763 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:23) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.system.api.feignClient.SysRoleClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.system.api.factory.SysRoleFallbackFactory found for feign client SysRoleClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -16:18:57.769 [http-nio-9300-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleException,105] - 请求地址'/partner/delPartner/1',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'id' for method parameter type Integer is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:218) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:193) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:114) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:20:26.080 [http-nio-9300-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleException,105] - 请求地址'/partner/delPartner/1',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'id' for method parameter type Integer is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:218) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:193) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:114) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:21:27.895 [http-nio-9300-exec-7] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleException,105] - 请求地址'/partner/delPartner/1',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'id' for method parameter type Integer is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:218) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:193) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:114) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:22:24.497 [http-nio-9300-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleException,105] - 请求地址'/partner/delPartner/1',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'id' for method parameter type Integer is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:218) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:193) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:114) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:25:17.147 [http-nio-9300-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/%7Bid%7D',发生未知异常. -java.lang.NullPointerException: null - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.delPartner(PartnerServiceImpl.java:202) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$cababe0f.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:78) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:27:10.658 [http-nio-9300-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleException,105] - 请求地址'/partner/delPartner/1',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'id' for method parameter type Integer is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:218) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:193) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:114) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:28:05.024 [http-nio-9300-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -java.lang.NullPointerException: null - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.delPartner(PartnerServiceImpl.java:202) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$a2dc0fdc.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:78) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:28:18.789 [http-nio-9300-exec-7] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -java.lang.NullPointerException: null - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.delPartner(PartnerServiceImpl.java:202) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$a2dc0fdc.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:78) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:29:28.690 [http-nio-9300-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartner/1',发生未知异常. -java.lang.NullPointerException: null - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartner(PartnerServiceImpl.java:142) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$bbd88e30.getPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartner(PartnerController.java:56) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -18:21:21.288 [nacos-grpc-client-executor-1316] ERROR c.a.n.c.r.c.g.GrpcClient - [sendResponse,243] - [1723019514575_192.168.110.85_59234]Error to send ack response, ackId->102 diff --git a/logs/ruoyi-chargingPile/error.2024-08-09.log b/logs/ruoyi-chargingPile/error.2024-08-09.log deleted file mode 100644 index a17244b..0000000 --- a/logs/ruoyi-chargingPile/error.2024-08-09.log +++ /dev/null @@ -1,1658 +0,0 @@ -13:51:18.935 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:21.677 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:37.310 [main] ERROR s.d.s.w.p.DocumentationPluginsBootstrapper - [scanDocumentation,98] - Unable to scan documentation context default -org.springframework.core.annotation.AnnotationConfigurationException: Different @AliasFor mirror values for annotation [org.springframework.web.bind.annotation.RequestParam] declared on public com.ruoyi.common.core.web.domain.AjaxResult com.ruoyi.chargingPile.controller.TChargingPileController.list(java.lang.Integer); attribute 'name' and its alias 'value' are declared with values of [siteId] and [站点id]. - at org.springframework.core.annotation.AnnotationTypeMapping$MirrorSets$MirrorSet.resolve(AnnotationTypeMapping.java:718) - at org.springframework.core.annotation.AnnotationTypeMapping$MirrorSets.resolve(AnnotationTypeMapping.java:673) - at org.springframework.core.annotation.TypeMappedAnnotation.<init>(TypeMappedAnnotation.java:133) - at org.springframework.core.annotation.TypeMappedAnnotation.<init>(TypeMappedAnnotation.java:117) - at org.springframework.core.annotation.TypeMappedAnnotation.from(TypeMappedAnnotation.java:618) - at org.springframework.core.annotation.MergedAnnotation.from(MergedAnnotation.java:550) - at org.springframework.core.annotation.AnnotationUtils.synthesizeAnnotation(AnnotationUtils.java:1214) - at org.springframework.core.annotation.AnnotationUtils.synthesizeAnnotationArray(AnnotationUtils.java:1300) - at org.springframework.core.annotation.SynthesizingMethodParameter.adaptAnnotationArray(SynthesizingMethodParameter.java:104) - at org.springframework.core.MethodParameter.getParameterAnnotations(MethodParameter.java:645) - at org.springframework.web.method.HandlerMethod$HandlerMethodParameter.getParameterAnnotations(HandlerMethod.java:541) - at springfox.documentation.service.ResolvedMethodParameter.<init>(ResolvedMethodParameter.java:43) - at springfox.documentation.spring.web.readers.operation.HandlerMethodResolver.lambda$toParameters$1(HandlerMethodResolver.java:168) - at java.util.Optional.map(Optional.java:215) - at springfox.documentation.spring.web.readers.operation.HandlerMethodResolver.methodParameters(HandlerMethodResolver.java:82) - at springfox.documentation.spring.web.WebMvcRequestHandler.getParameters(WebMvcRequestHandler.java:142) - at springfox.documentation.spi.service.contexts.RequestMappingContext.getParameters(RequestMappingContext.java:195) - at springfox.documentation.spi.service.contexts.Orderings.methodParametersSignature(Orderings.java:82) - at springfox.documentation.spi.service.contexts.Orderings.qualifiedMethodName(Orderings.java:77) - at java.util.Comparator.lambda$comparing$77a9974f$1(Comparator.java:469) - at java.util.TimSort.countRunAndMakeAscending(TimSort.java:360) - at java.util.TimSort.sort(TimSort.java:220) - at java.util.Arrays.sort(Arrays.java:1512) - at java.util.stream.SortedOps$SizedRefSortingSink.end(SortedOps.java:348) - at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) - at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) - at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) - at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) - at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) - at springfox.documentation.spring.web.scanners.ApiListingScanner.sortedByMethods(ApiListingScanner.java:229) - at springfox.documentation.spring.web.scanners.ApiListingScanner.scan(ApiListingScanner.java:152) - at springfox.documentation.spring.web.scanners.ApiDocumentationScanner.scan(ApiDocumentationScanner.java:67) - at springfox.documentation.spring.web.plugins.AbstractDocumentationPluginsBootstrapper.scanDocumentation(AbstractDocumentationPluginsBootstrapper.java:96) - at springfox.documentation.spring.web.plugins.AbstractDocumentationPluginsBootstrapper.bootstrapDocumentationPlugins(AbstractDocumentationPluginsBootstrapper.java:82) - at springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper.start(DocumentationPluginsBootstrapper.java:100) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:25) -13:52:18.589 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:19.062 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:28.576 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:29.055 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:38.585 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:39.057 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:48.591 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:49.062 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:58.578 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:59.064 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:08.586 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:09.058 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:18.608 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:19.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:28.821 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:29.098 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:38.587 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:39.109 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:48.587 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:49.061 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:19.989 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:22.136 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:19.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:29.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:30.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:39.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:49.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:50.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:59.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:00.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:09.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:10.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:29.722 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:30.041 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:39.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:40.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:50.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:59.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:00.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:09.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:10.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:19.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:20.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:29.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:40.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:49.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:50.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:59.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:00.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:09.672 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:10.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:19.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:29.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:30.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:39.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:00.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:09.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:10.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:29.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:30.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:39.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:40.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:49.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:00.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:10.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:19.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:20.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:29.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:30.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:39.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:40.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:49.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:59.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:00.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:09.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:10.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:20.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:29.762 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:30.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:40.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:49.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:50.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:00.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:09.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:10.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:20.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:29.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:40.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:49.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:50.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:59.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:00.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:10.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:39.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:40.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:59.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:00.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:10.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:29.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:30.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:39.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:40.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:49.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:50.178 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:59.700 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:00.209 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:09.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:10.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:19.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:20.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:29.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:39.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:40.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:59.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:00.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:10.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:29.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:30.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:39.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:40.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:47.046 [http-nio-9300-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -io.seata.common.exception.FrameworkException: No available service - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.loadBalance(AbstractNettyRemotingClient.java:266) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.sendSyncRequest(AbstractNettyRemotingClient.java:142) - at io.seata.tm.DefaultTransactionManager.syncCall(DefaultTransactionManager.java:95) - at io.seata.tm.DefaultTransactionManager.begin(DefaultTransactionManager.java:53) - at io.seata.tm.api.DefaultGlobalTransaction.begin(DefaultGlobalTransaction.java:105) - at io.seata.tm.api.TransactionalTemplate.beginTransaction(TransactionalTemplate.java:215) - at io.seata.tm.api.TransactionalTemplate.execute(TransactionalTemplate.java:122) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.handleGlobalTransaction(GlobalTransactionalInterceptor.java:202) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:172) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$2eda8772.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:83) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:06:49.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:59.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:00.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:01.719 [http-nio-9300-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -io.seata.common.exception.FrameworkException: No available service - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.loadBalance(AbstractNettyRemotingClient.java:266) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.sendSyncRequest(AbstractNettyRemotingClient.java:142) - at io.seata.tm.DefaultTransactionManager.syncCall(DefaultTransactionManager.java:95) - at io.seata.tm.DefaultTransactionManager.begin(DefaultTransactionManager.java:53) - at io.seata.tm.api.DefaultGlobalTransaction.begin(DefaultGlobalTransaction.java:105) - at io.seata.tm.api.TransactionalTemplate.beginTransaction(TransactionalTemplate.java:215) - at io.seata.tm.api.TransactionalTemplate.execute(TransactionalTemplate.java:122) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.handleGlobalTransaction(GlobalTransactionalInterceptor.java:202) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:172) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$2eda8772.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:83) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:07:09.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:10.181 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:29.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:30.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:41.085 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:41.088 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:41.085 [http-nio-9300-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -io.seata.common.exception.FrameworkException: No available service - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.loadBalance(AbstractNettyRemotingClient.java:266) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.sendSyncRequest(AbstractNettyRemotingClient.java:142) - at io.seata.tm.DefaultTransactionManager.syncCall(DefaultTransactionManager.java:95) - at io.seata.tm.DefaultTransactionManager.begin(DefaultTransactionManager.java:53) - at io.seata.tm.api.DefaultGlobalTransaction.begin(DefaultGlobalTransaction.java:105) - at io.seata.tm.api.TransactionalTemplate.beginTransaction(TransactionalTemplate.java:215) - at io.seata.tm.api.TransactionalTemplate.execute(TransactionalTemplate.java:122) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.handleGlobalTransaction(GlobalTransactionalInterceptor.java:202) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:172) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$2eda8772.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:83) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:07:49.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:50.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:00.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:01.118 [http-nio-9300-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/addPartner',发生未知异常. -org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.time.LocalDateTime` from String "2024-08-09T06:07:48.428Z": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10; nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.time.LocalDateTime` from String "2024-08-09T06:07:48.428Z": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10 - at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 5, column: 17] (through reference chain: com.ruoyi.chargingPile.api.model.Partner["createTime"]) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:391) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:343) - at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(AbstractMessageConverterMethodArgumentResolver.java:185) - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.readWithMessageConverters(RequestResponseBodyMethodProcessor.java:160) - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:133) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.time.LocalDateTime` from String "2024-08-09T06:07:48.428Z": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10 - at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 5, column: 17] (through reference chain: com.ruoyi.chargingPile.api.model.Partner["createTime"]) - at com.fasterxml.jackson.databind.exc.InvalidFormatException.from(InvalidFormatException.java:67) - at com.fasterxml.jackson.databind.DeserializationContext.weirdStringException(DeserializationContext.java:1991) - at com.fasterxml.jackson.databind.DeserializationContext.handleWeirdStringValue(DeserializationContext.java:1219) - at com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase._handleDateTimeException(JSR310DeserializerBase.java:176) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer._fromString(LocalDateTimeDeserializer.java:179) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer.deserialize(LocalDateTimeDeserializer.java:81) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer.deserialize(LocalDateTimeDeserializer.java:40) - at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:129) - at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:392) - at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:185) - at com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323) - at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4674) - at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3682) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:380) - ... 55 common frames omitted -Caused by: java.time.format.DateTimeParseException: Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10 - at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949) - at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851) - at java.time.LocalDateTime.parse(LocalDateTime.java:492) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer._fromString(LocalDateTimeDeserializer.java:177) - ... 64 common frames omitted -14:08:09.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:10.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:19.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:20.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:29.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:30.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:39.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:49.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:59.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:00.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:09.696 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:10.044 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:19.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:20.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:29.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:30.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:39.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:40.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:49.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:50.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:59.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:00.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:09.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:10.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:29.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:30.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:39.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:40.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:50.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:59.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:00.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:09.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:10.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:29.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:30.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:39.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:40.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:00.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:10.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:19.697 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:29.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:30.035 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:39.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:40.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:50.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:59.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:00.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:09.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:10.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:19.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:20.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:29.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:39.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:40.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:49.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:59.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:00.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:09.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:10.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:19.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:20.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:29.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:30.035 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:39.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:49.712 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:50.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:59.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:00.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:09.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:10.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:30.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:39.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:50.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:59.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:00.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:09.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:10.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:19.738 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:20.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:29.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:30.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:39.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:40.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:49.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:59.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:00.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:09.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:10.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:20.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:29.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:39.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:40.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:49.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:59.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:00.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:10.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:19.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:20.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:29.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:30.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:39.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:40.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:49.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:50.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:00.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:10.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:19.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:20.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:29.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:30.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:39.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:40.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:49.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:50.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:00.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:09.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:10.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:20.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:29.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:30.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:40.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:50.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:00.244 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:10.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:19.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:20.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:29.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:39.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:40.037 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:49.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:50.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:00.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:09.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:10.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:19.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:20.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:29.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:30.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:39.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:40.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:49.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:50.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:00.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:09.693 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:19.704 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:20.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:29.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:39.716 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:40.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:49.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:50.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:59.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:00.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:09.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:10.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:20.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:29.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:30.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:40.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:59.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:00.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:10.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:19.672 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:20.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:29.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:30.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:40.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:49.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:59.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:00.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:09.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:10.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:19.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:20.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:29.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:40.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:50.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:00.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:09.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:10.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:19.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:29.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:39.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:40.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:49.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:50.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:00.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:10.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:19.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:29.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:30.035 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:39.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:40.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:50.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:59.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:00.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:09.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:10.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:19.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:20.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:39.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:40.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:49.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:50.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:59.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:00.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:09.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:10.035 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:19.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:20.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:29.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:30.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:40.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:49.703 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:59.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:00.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:09.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:10.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:19.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:20.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:29.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:30.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:40.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:49.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:50.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:59.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:00.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:09.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:20.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:29.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:30.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:39.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:50.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:59.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:00.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:10.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:20.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:29.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:30.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:49.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:50.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:00.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:10.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:19.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:20.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:30.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:39.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:40.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:50.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:59.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:00.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:10.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:19.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:20.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:29.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:39.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:40.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:49.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:50.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:59.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:00.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:10.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:19.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:20.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:29.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:30.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:39.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:40.094 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:49.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:50.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:00.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:09.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:10.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:19.700 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:20.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:29.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:30.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:39.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:40.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:49.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:50.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:59.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:00.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:09.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:19.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:29.726 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:30.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:40.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:49.689 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:50.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:59.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:00.086 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:09.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:10.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:20.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:29.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:30.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:39.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:40.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:50.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:59.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:00.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:09.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:10.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:19.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:20.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:22.326 [http-nio-9300-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/addPartner',发生未知异常. -org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.time.LocalDateTime` from String "2024-08-09T06:07:48.428Z": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10; nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.time.LocalDateTime` from String "2024-08-09T06:07:48.428Z": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10 - at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 5, column: 17] (through reference chain: com.ruoyi.chargingPile.api.model.Partner["createTime"]) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:391) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:343) - at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(AbstractMessageConverterMethodArgumentResolver.java:185) - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.readWithMessageConverters(RequestResponseBodyMethodProcessor.java:160) - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:133) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.time.LocalDateTime` from String "2024-08-09T06:07:48.428Z": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10 - at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 5, column: 17] (through reference chain: com.ruoyi.chargingPile.api.model.Partner["createTime"]) - at com.fasterxml.jackson.databind.exc.InvalidFormatException.from(InvalidFormatException.java:67) - at com.fasterxml.jackson.databind.DeserializationContext.weirdStringException(DeserializationContext.java:1991) - at com.fasterxml.jackson.databind.DeserializationContext.handleWeirdStringValue(DeserializationContext.java:1219) - at com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase._handleDateTimeException(JSR310DeserializerBase.java:176) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer._fromString(LocalDateTimeDeserializer.java:179) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer.deserialize(LocalDateTimeDeserializer.java:81) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer.deserialize(LocalDateTimeDeserializer.java:40) - at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:129) - at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:392) - at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:185) - at com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323) - at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4674) - at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3682) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:380) - ... 55 common frames omitted -Caused by: java.time.format.DateTimeParseException: Text '2024-08-09T06:07:48.428Z' could not be parsed at index 10 - at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949) - at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851) - at java.time.LocalDateTime.parse(LocalDateTime.java:492) - at com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer._fromString(LocalDateTimeDeserializer.java:177) - ... 64 common frames omitted -14:40:29.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:30.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:39.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:49.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:50.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:59.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:00.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:09.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:19.713 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:29.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:30.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:40.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:50.047 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:59.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:00.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:09.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:10.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:19.729 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:20.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:29.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:30.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:39.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:40.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:49.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:59.707 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:00.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:09.906 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:10.110 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:19.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:20.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:29.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:39.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:40.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:50.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:59.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:00.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:09.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:19.799 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:20.057 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:29.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:30.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:39.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:40.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:49.714 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:50.053 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:59.709 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:00.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:09.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:19.693 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:30.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:39.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:50.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:59.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:00.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:09.717 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:10.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:19.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:20.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:29.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:30.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:39.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:40.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:50.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:59.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:00.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:10.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:29.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:30.055 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:39.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:40.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:49.700 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:00.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:09.710 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:10.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:19.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:29.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:30.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:39.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:40.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:49.719 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:50.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:59.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:00.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:09.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:10.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:19.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:20.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:29.805 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:30.036 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:39.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:49.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:59.708 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:00.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:19.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:29.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:30.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:39.712 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:40.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:49.692 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:50.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:59.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:00.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:09.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:10.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:19.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:29.823 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:30.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:39.706 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:40.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:49.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:50.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:00.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:09.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:10.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:19.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:20.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:29.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:30.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:39.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:49.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:50.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:59.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:00.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:09.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:10.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:19.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:20.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:29.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:30.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:39.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:40.042 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:49.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:59.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:00.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:09.673 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:10.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:19.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:29.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:30.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:39.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:40.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:49.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:50.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:59.752 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:00.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:09.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:10.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:19.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:20.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:29.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:30.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:39.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:40.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:49.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:00.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:09.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:10.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:19.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:29.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:30.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:39.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:49.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:50.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:59.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:00.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:10.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:19.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:29.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:30.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:39.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:40.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:50.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:59.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:00.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:10.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:20.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:29.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:30.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:39.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:40.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:49.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:50.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:00.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:09.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:10.031 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:19.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:20.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:30.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:39.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:40.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:49.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:50.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:59.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:00.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:09.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:10.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:19.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:29.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:30.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:39.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:40.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:49.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:50.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:59.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:00.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:09.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:10.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:19.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:29.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:30.035 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:39.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:49.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:50.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:59.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:00.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:09.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:10.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:19.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:20.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:29.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:30.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:39.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:40.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:49.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:50.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:59.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:00.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:09.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:10.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:19.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:20.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:29.676 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:30.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:39.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:40.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:49.689 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:50.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:59.675 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:00.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:09.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:10.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:19.672 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:20.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:29.695 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:30.034 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:39.684 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:40.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:49.678 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:50.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:59.687 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:00.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:09.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:10.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:19.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:20.020 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:29.682 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:30.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:39.688 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:40.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:49.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:59.832 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:00.053 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:09.725 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:10.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:19.697 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:20.058 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:29.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:30.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:39.720 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:40.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:49.904 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:50.233 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:59.680 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:00.028 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:09.672 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:10.033 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:19.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:20.041 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:29.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:30.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:39.850 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:40.054 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:49.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:50.025 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:59.683 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:00.102 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:09.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:10.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:19.679 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:20.026 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:29.674 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:30.035 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:39.686 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:40.029 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:49.685 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:50.032 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:54.851 [http-nio-9300-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -io.seata.common.exception.FrameworkException: No available service - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.loadBalance(AbstractNettyRemotingClient.java:266) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.sendSyncRequest(AbstractNettyRemotingClient.java:142) - at io.seata.tm.DefaultTransactionManager.syncCall(DefaultTransactionManager.java:95) - at io.seata.tm.DefaultTransactionManager.begin(DefaultTransactionManager.java:53) - at io.seata.tm.api.DefaultGlobalTransaction.begin(DefaultGlobalTransaction.java:105) - at io.seata.tm.api.TransactionalTemplate.beginTransaction(TransactionalTemplate.java:215) - at io.seata.tm.api.TransactionalTemplate.execute(TransactionalTemplate.java:122) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.handleGlobalTransaction(GlobalTransactionalInterceptor.java:202) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:172) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$2eda8772.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:83) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:08:59.677 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:00.021 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:09.681 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:10.360 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:04.699 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:06.861 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:09.882 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -The dependencies of some of the beans in the application context form a cycle: - - partnerController -┌─────┐ -| partnerServiceImpl -↑ ↓ -| siteServiceImpl -↑ ↓ -| TChargingGunServiceImpl -└─────┘ - - -Action: - -Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true. - -17:24:08.753 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:11.507 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:14.565 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -The dependencies of some of the beans in the application context form a cycle: - - partnerController -┌─────┐ -| partnerServiceImpl -↑ ↓ -| siteServiceImpl -↑ ↓ -| TChargingGunServiceImpl -└─────┘ - - -Action: - -Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true. - -17:26:11.545 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:26:13.657 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:26:51.096 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:26:53.244 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:50.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:51.128 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:00.789 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:01.432 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:10.799 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:11.130 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:20.797 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:21.129 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:31.135 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:40.795 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:41.138 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:47.211 [http-nio-9300-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/delPartner/1',发生未知异常. -io.seata.common.exception.FrameworkException: No available service - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.loadBalance(AbstractNettyRemotingClient.java:266) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient.sendSyncRequest(AbstractNettyRemotingClient.java:142) - at io.seata.tm.DefaultTransactionManager.syncCall(DefaultTransactionManager.java:95) - at io.seata.tm.DefaultTransactionManager.begin(DefaultTransactionManager.java:53) - at io.seata.tm.api.DefaultGlobalTransaction.begin(DefaultGlobalTransaction.java:105) - at io.seata.tm.api.TransactionalTemplate.beginTransaction(TransactionalTemplate.java:215) - at io.seata.tm.api.TransactionalTemplate.execute(TransactionalTemplate.java:122) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.handleGlobalTransaction(GlobalTransactionalInterceptor.java:202) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:172) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$bb28e694.delPartner(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.delPartner(PartnerController.java:90) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:931) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:671) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -17:28:50.794 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:51.135 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:00.797 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:01.126 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:11.134 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:20.789 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:21.131 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:31.129 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:40.793 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:41.132 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:50.813 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:51.139 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:00.813 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:01.137 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:10.889 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:11.258 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:20.791 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:21.140 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:31.131 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:40.790 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:41.137 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:51.132 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:00.795 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:01.140 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:10.794 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:11.129 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:21.128 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:30.791 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:31.139 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:40.800 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:41.125 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:50.796 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:51.167 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:01.135 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:11.134 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:20.818 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:21.131 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:30.876 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:31.128 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:40.799 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:41.128 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:50.820 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:51.136 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:00.798 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:01.132 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:11.133 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:20.798 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:21.128 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:31.129 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:40.794 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:41.138 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:50.791 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:51.132 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:00.795 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:01.138 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:10.795 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:11.126 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:20.790 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:21.139 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:31.130 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:40.790 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:41.132 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:50.796 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:51.126 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:00.792 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:01.135 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:11.132 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:20.794 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:21.136 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:30.794 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:31.138 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:52.323 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:54.426 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:51.999 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:52.361 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:02.011 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:02.357 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:12.001 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:12.360 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:21.999 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:22.359 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:32.009 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:32.350 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:42.012 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:42.469 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:52.000 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:52.364 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:02.003 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:02.363 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:12.005 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:12.351 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:22.012 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:22.358 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:32.015 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:32.358 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:42.195 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:42.437 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:52.012 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:52.358 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:02.001 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:02.363 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running diff --git a/logs/ruoyi-chargingPile/error.2024-08-15.log b/logs/ruoyi-chargingPile/error.2024-08-15.log deleted file mode 100644 index ee7fb5c..0000000 --- a/logs/ruoyi-chargingPile/error.2024-08-15.log +++ /dev/null @@ -1,5565 +0,0 @@ -11:11:01.747 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:11:03.237 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:11:07.115 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'siteServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TChargingPileServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderAccountingStrategyClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ChargingOrderAccountingStrategyFallbackFactory found for feign client ChargingOrderAccountingStrategyClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:25) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'partnerServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'siteServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TChargingPileServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderAccountingStrategyClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ChargingOrderAccountingStrategyFallbackFactory found for feign client ChargingOrderAccountingStrategyClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'siteServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TChargingPileServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderAccountingStrategyClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ChargingOrderAccountingStrategyFallbackFactory found for feign client ChargingOrderAccountingStrategyClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TChargingPileServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderAccountingStrategyClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ChargingOrderAccountingStrategyFallbackFactory found for feign client ChargingOrderAccountingStrategyClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 49 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.order.api.feignClient.ChargingOrderAccountingStrategyClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ChargingOrderAccountingStrategyFallbackFactory found for feign client ChargingOrderAccountingStrategyClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 65 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.order.api.factory.ChargingOrderAccountingStrategyFallbackFactory found for feign client ChargingOrderAccountingStrategyClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 78 common frames omitted -11:12:01.042 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:12:02.496 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:13:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:14:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:15:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:16:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:17:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:18:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:31.082 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:19:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:20:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:21:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:11.085 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:22:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:23:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:24:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:25:51.122 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:26:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:27:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:28:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:29:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:30:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:31:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:32:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:33:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:34:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:35:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:36:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:37:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:38:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:39:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:20.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:40:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:41:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:41.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:42:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:41.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:43:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:44:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:10.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:45:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:46:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:47:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:48:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:49:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:50:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:51:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:40.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:52:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:53:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:54:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:55:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:56:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:57:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:58:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -11:59:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:00:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:01:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:02:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:03:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:04:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:05:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:06:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:07:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:08:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:09:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:10:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:11:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:12:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:21.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:13:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:14:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:15:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:16:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:17:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:18:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:19:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:20:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:21:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:22:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:11.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:23:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:24:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:25:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:26:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:27:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:28:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:29:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:30:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:31:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:32:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:33:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:34:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:35:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:41.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:36:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:37:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:38:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:39:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:40:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:41:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:42:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:43:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:44:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:45:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:46:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:47:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:48:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:49:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:50:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:51:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:52:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:00.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:53:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:54:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:55:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:56:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:57:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:58:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -12:59:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:00:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:01:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:02:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:03:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:04:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:05:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:06:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:07:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:08:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:09:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:10:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:11:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:12:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:13:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:14:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:15:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:16:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:17:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:18:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:19:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:20:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:21:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:22:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:23:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:24:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:25:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:26:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:27:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:10.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:11.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:28:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:29:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:30:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:31:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:32:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:33:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:34:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:35:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:36:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:10.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:37:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:38:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:39:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:40:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:41:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:42:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:43:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:44:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:45:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:46:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:47:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:48:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:49:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:50:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:51:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:52:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:53:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:54:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:55:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:56:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:57:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:58:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -13:59:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:00:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:01:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:02:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:03:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:04:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:05:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:06:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:07:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:08:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:09:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:10:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:11:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:12:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:13:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:14:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:15:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:16:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:17:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:18:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:19:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:20:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:21:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:22:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:23:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:24:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:25:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:26:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:27:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:28:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:29:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:30:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:31:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:32:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:33:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:50.788 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:34:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:35:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:31.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:36:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:37:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:38:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:39:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:40:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:41:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:42:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:43:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:44:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:45:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:46:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:47:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:48:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:49:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:50:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:51:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:20.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:52:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:53:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:54:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:20.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:21.113 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:55:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:56:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:57:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:58:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -14:59:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:00:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:21.133 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:01:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:02:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:03:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:04:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:05:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:06:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:07:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:08:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:09:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:10:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:11:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:12:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:13:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:14:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:15:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:16:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:17:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:18:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:19:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:20:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:21:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:22:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:23:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:24:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:25:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:26:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:21.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:27:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:28:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:29:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:30:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:31:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:32:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:33:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:34:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:35:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:36:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:37:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:38:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:39:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:40:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:31.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:41:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:42:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:43:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:31.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:44:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:45:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:46:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:47:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:50.770 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:48:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:49:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:50:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:51:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:52:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:53:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:54:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:55:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:56:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:57:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:58:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -15:59:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:00:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:01:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:02:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:20.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:03:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:11.064 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:04:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:50.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:05:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:06:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:07:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:08:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:09:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:10:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:11:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:12:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:30.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:13:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:14:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:30.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:15:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:16:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:41.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:17:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:18:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:19:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:20:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:21:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:22:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:23:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:24:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:25:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:30.787 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:26:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:01.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:27:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:28:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:29:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:30:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:31:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:32:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:50.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:33:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:31.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:34:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:35:51.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:36:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:37:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:40.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:38:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:40.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:39:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:01.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:11.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:40:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:41:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:21.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:42:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:20.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:43:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:40.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:50.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:44:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:30.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:45:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:00.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:46:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:31.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:47:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:48:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:00.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:21.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:40.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:49:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:50:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:00.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:20.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:30.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:51:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:00.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:50.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:52:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:01.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:31.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:53:51.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:10.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:54:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:40.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:55:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:01.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:10.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:11.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:21.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:31.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:56:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:00.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:57:51.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:11.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:21.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:58:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:20.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:31.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:40.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:41.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -16:59:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:00.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:10.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:00:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:20.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:21.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:50.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:01:51.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:21.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:41.064 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:50.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:02:51.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:10.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:11.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:41.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:03:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:01.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:11.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:30.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:31.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:04:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:10.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:11.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:05:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:01.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:10.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:06:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:07:51.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:00.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:01.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:10.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:20.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:40.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:41.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:08:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:20.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:21.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:31.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:41.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:09:51.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:00.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:01.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:21.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:50.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:10:51.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:20.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:21.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:41.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:11:51.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:11.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:30.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:40.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:41.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:12:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:00.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:10.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:11.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:30.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:31.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:41.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:13:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:11.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:21.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:30.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:14:51.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:10.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:21.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:30.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:31.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:50.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:15:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:01.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:11.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:20.783 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:41.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:16:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:00.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:01.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:20.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:21.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:30.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:40.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:41.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:50.773 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:17:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:00.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:01.070 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:10.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:20.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:21.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:30.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:40.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:41.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:50.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:18:51.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:01.081 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:10.776 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:11.072 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:20.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:31.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:40.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:41.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:50.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:19:51.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:00.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:01.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:10.786 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:11.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:20.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:21.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:30.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:31.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:40.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:41.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:50.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:20:51.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:00.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:01.069 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:10.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:11.077 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:20.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:30.782 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:31.078 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:40.780 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:41.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:50.778 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:21:51.075 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:00.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:01.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:10.777 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:11.071 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:20.775 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:21.073 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:30.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:31.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:40.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:50.774 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:22:51.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:01.074 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:10.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:11.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:20.772 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:21.068 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:30.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:31.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:40.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:41.065 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:50.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:23:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:00.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:01.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:10.781 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:11.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:20.771 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:21.080 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:30.784 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:31.066 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:40.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:41.067 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:50.785 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:24:51.079 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:25:00.779 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:25:01.076 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:26:35.893 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:26:37.400 [main] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:35.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:45.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:45.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:27:55.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:05.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:05.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:15.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:15.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:25.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:35.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:35.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:45.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:55.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:28:55.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:05.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:15.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:15.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:25.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:35.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:45.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:29:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:05.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:25.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:45.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:55.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:30:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:05.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:15.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:15.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:25.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:25.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:35.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:45.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:45.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:55.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:31:55.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:05.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:05.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:15.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:25.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:35.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:45.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:45.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:55.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:32:55.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:05.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:05.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:15.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:35.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:35.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:55.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:33:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:05.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:05.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:15.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:25.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:35.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:45.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:34:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:05.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:15.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:45.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:55.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:35:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:05.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:15.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:25.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:25.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:35.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:35.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:45.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:45.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:36:55.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:05.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:25.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:25.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:35.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:45.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:45.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:55.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:37:55.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:05.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:15.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:35.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:35.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:45.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:38:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:05.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:25.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:25.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:35.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:35.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:45.645 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:45.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:55.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:39:55.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:15.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:25.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:45.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:45.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:55.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:40:55.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:05.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:25.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:25.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:35.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:35.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:45.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:45.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:55.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:41:55.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:15.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:35.645 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:35.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:45.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:45.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:55.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:42:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:05.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:15.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:25.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:35.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:35.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:45.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:43:55.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:15.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:35.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:35.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:45.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:45.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:55.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:44:55.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:05.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:15.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:15.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:35.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:35.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:45.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:55.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:45:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:15.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:15.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:25.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:45.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:46:55.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:05.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:15.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:15.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:25.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:25.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:35.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:35.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:45.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:45.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:47:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:05.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:05.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:15.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:15.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:25.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:35.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:45.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:45.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:55.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:48:55.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:05.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:05.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:15.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:25.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:25.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:35.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:35.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:45.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:49:55.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:15.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:25.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:25.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:35.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:35.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:45.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:50:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:15.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:15.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:25.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:25.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:35.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:35.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:45.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:45.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:55.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:51:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:05.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:05.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:15.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:15.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:35.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:35.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:45.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:55.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:52:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:05.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:15.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:25.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:25.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:45.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:45.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:55.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:53:55.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:05.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:05.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:15.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:15.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:25.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:35.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:45.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:55.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:54:55.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:05.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:15.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:15.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:35.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:45.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:45.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:55.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:55:55.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:05.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:15.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:15.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:25.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:35.939 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:45.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:45.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:55.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:56:55.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:05.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:15.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:15.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:25.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:45.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:45.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:57:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:05.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:15.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:25.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:25.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:35.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:35.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:45.628 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:55.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:58:55.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:15.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:15.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:35.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:35.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:45.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -17:59:55.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:05.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:25.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:25.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:35.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:55.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:00:55.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:15.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:15.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:45.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:45.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:55.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:15.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:15.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:25.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:35.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:35.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:45.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:45.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:05.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:15.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:15.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:25.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:25.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:45.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:55.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:55.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:05.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:15.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:15.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:25.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:25.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:35.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:35.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:55.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:05.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:05.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:15.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:15.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:45.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:45.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:55.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:05:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:05.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:05.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:25.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:35.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:35.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:45.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:45.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:55.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:06:55.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:05.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:15.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:15.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:25.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:35.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:35.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:45.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:45.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:07:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:05.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:15.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:25.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:35.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:35.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:45.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:55.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:08:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:05.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:05.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:15.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:15.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:25.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:35.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:45.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:09:55.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:05.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:15.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:45.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:55.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:10:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:05.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:05.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:15.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:15.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:25.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:35.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:35.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:45.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:45.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:55.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:11:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:05.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:15.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:25.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:25.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:35.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:35.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:45.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:45.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:55.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:12:55.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:15.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:15.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:25.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:35.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:35.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:45.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:45.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:13:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:15.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:25.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:25.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:35.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:35.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:45.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:45.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:55.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:14:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:05.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:05.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:15.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:25.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:25.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:45.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:45.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:55.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:15:55.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:05.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:15.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:25.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:35.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:35.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:16:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:05.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:05.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:15.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:15.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:25.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:25.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:35.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:45.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:45.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:55.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:17:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:15.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:15.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:25.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:25.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:35.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:35.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:45.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:45.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:55.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:18:55.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:05.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:15.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:15.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:35.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:45.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:45.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:19:55.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:05.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:15.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:25.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:25.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:35.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:35.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:45.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:45.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:55.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:20:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:05.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:15.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:25.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:35.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:45.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:45.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:21:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:05.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:15.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:15.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:25.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:35.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:35.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:45.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:45.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:22:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:05.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:05.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:15.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:35.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:35.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:45.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:55.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:23:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:05.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:05.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:15.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:25.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:25.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:35.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:55.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:24:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:05.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:15.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:15.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:25.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:35.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:45.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:45.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:25:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:05.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:05.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:15.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:25.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:35.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:35.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:45.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:26:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:05.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:05.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:15.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:25.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:35.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:45.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:45.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:27:55.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:05.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:15.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:15.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:25.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:35.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:35.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:45.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:45.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:28:55.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:05.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:05.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:15.645 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:15.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:25.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:25.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:35.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:35.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:45.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:55.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:29:55.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:05.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:15.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:15.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:25.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:35.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:35.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:45.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:55.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:30:55.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:15.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:25.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:35.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:35.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:45.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:55.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:31:55.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:05.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:25.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:35.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:35.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:45.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:45.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:55.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:32:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:15.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:25.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:35.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:35.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:45.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:45.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:55.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:33:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:05.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:15.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:15.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:25.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:35.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:35.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:45.643 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:45.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:55.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:34:55.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:05.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:05.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:15.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:15.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:25.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:35.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:35.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:35:55.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:05.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:15.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:15.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:25.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:25.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:35.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:35.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:45.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:55.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:36:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:05.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:15.638 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:15.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:25.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:35.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:45.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:55.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:37:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:05.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:15.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:25.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:25.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:35.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:35.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:55.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:38:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:05.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:05.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:15.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:15.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:35.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:35.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:45.645 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:55.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:39:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:05.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:15.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:15.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:25.644 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:35.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:45.645 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:55.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:40:55.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:05.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:05.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:15.633 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:25.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:25.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:35.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:45.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:55.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:41:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:05.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:15.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:25.629 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:35.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:35.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:45.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:45.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:55.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:42:55.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:05.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:05.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:15.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:15.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:25.932 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:35.637 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:35.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:45.645 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:45.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:55.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:43:55.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:05.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:05.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:15.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:15.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:25.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:35.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:35.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:45.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:45.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:55.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:44:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:05.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:15.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:15.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:25.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:25.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:35.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:35.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:45.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:45.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:55.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:45:55.923 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:05.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:05.931 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:15.927 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:25.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:25.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:35.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:35.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:45.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:55.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:46:55.930 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:05.636 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:05.934 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:15.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:15.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:25.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:25.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:35.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:35.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:45.642 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:45.937 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:55.641 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:47:55.938 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:05.632 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:05.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:15.631 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:15.924 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:25.635 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:25.929 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:35.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:35.933 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:45.634 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:45.928 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:55.639 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:48:55.935 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:49:05.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:49:05.925 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:49:15.640 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:49:15.936 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:49:25.630 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:49:25.926 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running diff --git a/logs/ruoyi-chargingPile/error.2024-08-16.log b/logs/ruoyi-chargingPile/error.2024-08-16.log deleted file mode 100644 index fb2219a..0000000 --- a/logs/ruoyi-chargingPile/error.2024-08-16.log +++ /dev/null @@ -1,996 +0,0 @@ -14:52:28.551 [http-nio-9300-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:52:34.331 [http-nio-9300-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:52:54.244 [http-nio-9300-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:04.516 [http-nio-9300-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:35.815 [http-nio-9300-exec-7] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:54:00.007 [http-nio-9300-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:58:20.628 [http-nio-9300-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:59:46.522 [http-nio-9300-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: Request method 'POST' not supported - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:01:49.605 [http-nio-9300-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: -### Error querying database. Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where id in -### Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -; uncategorized SQLException; SQL state [HY000]; error code [0]; com.alibaba.druid.sql.parser.EOFParserException: EOF; nested exception is java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:09:18.577 [http-nio-9300-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: -### Error querying database. Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where r.id in -### Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -; uncategorized SQLException; SQL state [HY000]; error code [0]; com.alibaba.druid.sql.parser.EOFParserException: EOF; nested exception is java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:11:28.421 [http-nio-9300-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: -### Error querying database. Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where r.id in -### Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -; uncategorized SQLException; SQL state [HY000]; error code [0]; com.alibaba.druid.sql.parser.EOFParserException: EOF; nested exception is java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:13:24.557 [http-nio-9300-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:13:52.143 [http-nio-9300-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:14:52.240 [http-nio-9300-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/partner/getPartnerList',发生未知异常. -java.lang.RuntimeException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl.getPartnerList(PartnerServiceImpl.java:83) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$FastClassBySpringCGLIB$$b27823f6.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at io.seata.spring.annotation.GlobalTransactionalInterceptor.invoke(GlobalTransactionalInterceptor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a.getPartnerList(<generated>) - at com.ruoyi.chargingPile.controller.PartnerController.getPartnerList(PartnerController.java:47) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -17:18:00.604 [http-nio-9300-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/t-accounting-strategy/pageList',不支持'GET'请求 -17:18:19.601 [http-nio-9300-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/t-accounting-strategy/pageList',不支持'GET'请求 diff --git a/logs/ruoyi-chargingPile/error.log b/logs/ruoyi-chargingPile/error.log deleted file mode 100644 index 612cd0b..0000000 --- a/logs/ruoyi-chargingPile/error.log +++ /dev/null @@ -1,2206 +0,0 @@ -16:38:12.709 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAccountingStrategyController' defined in file [E:\IDEA Workspace\ChargingPile\ruoyi-service\ruoyi-chargingPile\target\classes\com\ruoyi\chargingPile\controller\TAccountingStrategyController.class]: Unsatisfied dependency expressed through constructor parameter 1; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAccountingStrategyDetailServiceImpl': Unsatisfied dependency expressed through field 'vipClient'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.VipClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:25) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAccountingStrategyDetailServiceImpl': Unsatisfied dependency expressed through field 'vipClient'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.VipClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 19 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.VipClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 34 common frames omitted -Caused by: java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0 - at feign.Util.checkState(Util.java:136) - at org.springframework.cloud.openfeign.annotation.RequestParamParameterProcessor.processArgument(RequestParamParameterProcessor.java:63) - at org.springframework.cloud.openfeign.support.SpringMvcContract.processAnnotationsOnParameter(SpringMvcContract.java:280) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:126) - at org.springframework.cloud.openfeign.support.SpringMvcContract.parseAndValidateMetadata(SpringMvcContract.java:193) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:65) - at com.alibaba.cloud.sentinel.feign.SentinelContractHolder.parseAndValidateMetadata(SentinelContractHolder.java:49) - at feign.ReflectiveFeign$ParseHandlersByName.apply(ReflectiveFeign.java:151) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:49) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 42 common frames omitted -16:42:47.488 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAccountingStrategyController' defined in file [E:\IDEA Workspace\ChargingPile\ruoyi-service\ruoyi-chargingPile\target\classes\com\ruoyi\chargingPile\controller\TAccountingStrategyController.class]: Unsatisfied dependency expressed through constructor parameter 1; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAccountingStrategyDetailServiceImpl': Unsatisfied dependency expressed through field 'vipClient'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.VipClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.VipFallbackFactory found for feign client VipClient - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.chargingPile.RuoYiChargingPileApplication.main(RuoYiChargingPileApplication.java:25) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TAccountingStrategyDetailServiceImpl': Unsatisfied dependency expressed through field 'vipClient'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.VipClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.VipFallbackFactory found for feign client VipClient - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 19 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.VipClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.VipFallbackFactory found for feign client VipClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 34 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.VipFallbackFactory found for feign client VipClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 42 common frames omitted -16:59:16.890 [nacos-grpc-client-executor-176] ERROR c.a.n.c.r.c.g.GrpcClient - [sendResponse,243] - [1723538699261_192.168.110.85_59647]Error to send ack response, ackId->195 -17:39:46.814 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 45 milliseconds, 300600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@27ffb364[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:46.815 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 50 milliseconds, 758000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2703a22[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:47.161 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 55 milliseconds, 417400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@134cd20b[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:50.017 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 66 milliseconds, 920300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@53b9859b[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:50.058 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 165100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@37b707df[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:50.312 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 18 milliseconds, 727100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f70d233[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:50.616 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 46 milliseconds, 351000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@21bce3f8[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:53.254 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 186700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e8724ca[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:53.346 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 34 milliseconds, 265000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4859814f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:53.650 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 606700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@144aae3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:53.773 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 146500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5041d13a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:56.577 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 108400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4429c8a2[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:56.665 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 531400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@36fa79c5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:56.975 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 996100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10f1950c[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:39:56.998 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 16 milliseconds, 181900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@22572517[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.015 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 704900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@9b1e63c[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.078 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 68400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d57261a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.346 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 213100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5142863a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:00.396 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 200300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@482493ed[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:03.532 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 936700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47bd8fb4[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:03.592 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 916100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7360713a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:03.761 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 277300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7a9bd1ea[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:03.908 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 565600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6b7b85a3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:07.169 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 615300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@27d29136[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:07.228 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 188000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5de476cc[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:07.409 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 136 milliseconds, 765300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@43b9b78a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:07.727 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 199 milliseconds, 623800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d2f5e32[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:11.023 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 563300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@37ff4561[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:11.039 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 270000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@669bfcb5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:11.088 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 451200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69c322d3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:11.549 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 16 milliseconds, 111400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66de7837[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:14.817 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 469400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@682f8d06[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:14.848 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 54500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1020a392[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:14.864 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 281200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@229d3f26[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:15.369 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 213500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@76f29484[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:18.498 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:18.609 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:18.642 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 627000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@68c6d30f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:18.720 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:18.768 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 810400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@438ca492[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:18.784 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 986500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2f6d1a81[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:19.287 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 770100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@268be280[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:20.841 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:20.952 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:21.062 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:22.562 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 273100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@21537002[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:22.783 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 112500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1c10f03d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:22.798 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 239900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4fe22e3c[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:23.316 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 440800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4c149a03[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:25.179 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:25.289 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:25.398 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:26.585 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 944400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e0abb48[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:26.899 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 646400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@65a48a27[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:26.917 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 922500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@260f01d6[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:27.423 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 431100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@58b3f07f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:30.713 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 347100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@642547e3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:31.120 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 322500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@24b5a32a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:31.136 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 545900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1577e00d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:31.654 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 546800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44e1c9d3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:33.640 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:33.852 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:33.954 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:34.955 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 952300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3790c83f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:35.079 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:35.189 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:35.300 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:35.584 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 845300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e5f066f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:35.585 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 854000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6ab332be[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:36.072 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 731500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@53c5a635[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:37.414 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:37.526 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:37.635 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:39.275 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 849300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@9403f75[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:40.002 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 775000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@265f813[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:40.003 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 541800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@48c404a3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:40.490 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 656600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@335a714f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:41.752 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:41.863 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:41.974 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:43.691 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 479600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4a7ad307[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:44.525 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 183200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10463e5f[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:44.526 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 312600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@65fa28ad[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:45.012 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 522300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6fad45df[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:48.213 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 909400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@55827739[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:49.132 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 298400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4e296aed[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:49.132 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 772100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@64a43c2c[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:49.620 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 995500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23a141d0[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:50.075 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:50.092 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:40:50.183 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:50.199 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:40:50.292 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:50.308 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:40:52.843 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 712500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2282f587[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:53.855 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 966900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@229eda38[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:53.855 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 739900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1be26008[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:54.329 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 650200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@46491e93[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:57.562 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 637000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@17686352[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:58.679 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 42100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66806c74[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:58.680 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 326600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4d565afd[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:40:59.154 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 671100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7a704440[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:02.365 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 593600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ee17bcf[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:03.601 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 28100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a85a208[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:03.625 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 30 milliseconds, 27500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e42d296[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:04.068 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 542800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@468813c5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:06.427 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:41:06.539 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:41:06.650 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:41:07.311 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 302300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@64f40ce7[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:08.622 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 971200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12aeb91e[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:08.667 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 23 milliseconds, 961500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@117bdde5[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:09.144 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 82000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4bf9f769[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:12.323 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 982300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@428eba88[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:13.752 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 840500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c56c387[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:13.811 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 689600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@228018f3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:14.272 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 545900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fc5b666[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:17.506 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 492100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4fd23c42[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:18.976 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 69700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1f1a9892[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:19.039 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 652500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@695aa5b7[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:19.495 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 2300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5871c4d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:22.415 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:41:22.527 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:41:22.638 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE1Nn0.DDRiaM-oBAyQHojCaC2JJZGNQ0WK0c7pzEgnw4od9RU, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:41:22.717 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 644900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@49b7bba2[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:24.296 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 265100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@654387f3[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:24.359 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 946900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@79292413[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:24.828 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 23 milliseconds, 885700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69b5e872[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:28.050 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 746300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@576269ea[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:29.732 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 124800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@406d271b[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:29.811 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 659300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60b9a8b7[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:30.285 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 254600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@27eed942[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:33.496 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 34 milliseconds, 590300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@401aa66a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:35.243 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 52200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@27e826f9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:35.324 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 255200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@345c9d50[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:35.813 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 933400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@faab44b[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:38.790 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:41:38.901 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:41:39.011 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzU1ODE3MX0.V2cBwBapnmLtP9B9blvUQRx4_xWgvgD1XQRORGUfZ7E, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -17:41:39.012 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 799700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a3bdb18[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:40.860 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 674000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e5b46a6[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:40.937 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 395200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12bf3b81[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:41.442 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 830200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1914d2af[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:44.621 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 703200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@64460fc1[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:46.572 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 982900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@56de0c81[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:46.664 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 40700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@116a7dc6[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:47.154 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 560400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@57dea5e8[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:50.334 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 557600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2f8340a9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:52.383 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 326400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@662f2d29[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:52.476 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 557300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70b806a[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:52.964 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 18600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1d732af0[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:41:56.168 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 576600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@660ed5c9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@cf04b81, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6626a90d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@173359b2}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -18:00:43.239 [NettyClientSelector_TMROLE_1_1] ERROR i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,476] - 0318 -java.io.IOException: 远程主机强迫关闭了一个现有的连接。 - at sun.nio.ch.SocketDispatcher.read0(Native Method) - at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43) - at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) - at sun.nio.ch.IOUtil.read(IOUtil.java:192) - at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) - at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259) - at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:43.239 [NettyClientSelector_RMROLE_1_1] ERROR i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,476] - 0318 -java.io.IOException: 远程主机强迫关闭了一个现有的连接。 - at sun.nio.ch.SocketDispatcher.read0(Native Method) - at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43) - at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) - at sun.nio.ch.IOUtil.read(IOUtil.java:192) - at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) - at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:259) - at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:48.054 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [doConnect,249] - 0304 register RM failed. -io.seata.common.exception.FrameworkException: can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:182) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:58) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:34) - at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:246) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -Caused by: io.seata.common.exception.FrameworkException: connect failed, can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:177) - ... 16 common frames omitted -Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.204.1:8091 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:48.055 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,199] - 0101 can not connect to 192.168.204.1:8091 cause:can not register RM,err:can not connect to services-server. -io.seata.common.exception.FrameworkException: can not register RM,err:can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:250) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:50.049 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [doConnect,249] - 0304 register RM failed. -io.seata.common.exception.FrameworkException: can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:182) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:58) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:34) - at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:246) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -Caused by: io.seata.common.exception.FrameworkException: connect failed, can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:177) - ... 16 common frames omitted -Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.204.1:8091 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:50.049 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,199] - 0101 can not connect to 192.168.204.1:8091 cause:can not register RM,err:can not connect to services-server. -io.seata.common.exception.FrameworkException: can not register RM,err:can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:250) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:58.056 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [doConnect,249] - 0304 register RM failed. -io.seata.common.exception.FrameworkException: can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:182) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:58) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:34) - at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:246) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -Caused by: io.seata.common.exception.FrameworkException: connect failed, can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:177) - ... 16 common frames omitted -Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.204.1:8091 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:00:58.057 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,199] - 0101 can not connect to 192.168.204.1:8091 cause:can not register RM,err:can not connect to services-server. -io.seata.common.exception.FrameworkException: can not register RM,err:can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:250) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:01:00.045 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [doConnect,249] - 0304 register RM failed. -io.seata.common.exception.FrameworkException: can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:182) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:58) - at io.seata.core.rpc.netty.NettyPoolableFactory.makeObject(NettyPoolableFactory.java:34) - at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:1220) - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:246) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -Caused by: io.seata.common.exception.FrameworkException: connect failed, can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientBootstrap.getNewChannel(NettyClientBootstrap.java:177) - ... 16 common frames omitted -Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.204.1:8091 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:01:00.046 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,199] - 0101 can not connect to 192.168.204.1:8091 cause:can not register RM,err:can not connect to services-server. -io.seata.common.exception.FrameworkException: can not register RM,err:can not connect to services-server. - at io.seata.core.rpc.netty.NettyClientChannelManager.doConnect(NettyClientChannelManager.java:250) - at io.seata.core.rpc.netty.NettyClientChannelManager.acquireChannel(NettyClientChannelManager.java:112) - at io.seata.core.rpc.netty.NettyClientChannelManager.reconnect(NettyClientChannelManager.java:196) - at io.seata.core.rpc.netty.AbstractNettyRemotingClient$1.run(AbstractNettyRemotingClient.java:115) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -18:01:06.047 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:08.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:16.039 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:18.014 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:26.060 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:28.022 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:36.044 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:38.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:46.036 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:48.104 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:56.043 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:01:58.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:06.038 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:08.049 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:16.035 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:18.023 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:26.030 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:28.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:36.031 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:38.013 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:46.045 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:48.019 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:56.050 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:02:58.016 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:06.037 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:08.017 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:16.037 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:18.024 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:26.044 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:28.014 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:36.096 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:38.030 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:46.070 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:48.092 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:56.038 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:03:58.105 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:06.064 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:08.054 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:16.184 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:18.122 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:26.089 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:28.082 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:36.247 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:38.138 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:46.032 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:48.027 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:56.043 [timeoutChecker_1_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running -18:04:58.061 [timeoutChecker_2_1] ERROR i.s.c.r.n.NettyClientChannelManager - [reconnect,188] - no available service found in cluster 'default', please make sure registry config correct and keep your seata server running diff --git a/logs/ruoyi-chargingPile/info.2024-08-07.log b/logs/ruoyi-chargingPile/info.2024-08-07.log deleted file mode 100644 index 6867460..0000000 --- a/logs/ruoyi-chargingPile/info.2024-08-07.log +++ /dev/null @@ -1,690 +0,0 @@ -11:39:03.054 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:39:05.270 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0 -11:39:05.432 [main] INFO o.r.Reflections - [scan,232] - Reflections took 127 ms to scan 1 urls, producing 3 keys and 6 values -11:39:05.486 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -11:39:05.506 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -11:39:05.775 [main] INFO o.r.Reflections - [scan,232] - Reflections took 265 ms to scan 224 urls, producing 0 keys and 0 values -11:39:05.799 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -11:39:05.821 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -11:39:05.840 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -11:39:06.077 [main] INFO o.r.Reflections - [scan,232] - Reflections took 233 ms to scan 224 urls, producing 0 keys and 0 values -11:39:06.082 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:39:06.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/105146840 -11:39:06.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/730584984 -11:39:06.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:39:06.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:39:06.102 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:39:09.575 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001950777_192.168.110.85_53829 -11:39:09.576 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Notify connected event to listeners. -11:39:09.578 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:39:09.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24da7152-c87e-4106-a8d3-6e88e54aa6b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/129958347 -11:39:09.721 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:39:14.307 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -11:39:14.309 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:39:14.309 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:39:14.616 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:39:20.552 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:39:25.910 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e -11:39:25.911 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] RpcClient init label, labels = {module=naming, source=sdk} -11:39:25.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:39:25.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:39:25.915 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:39:25.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:39:26.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001967375_192.168.110.85_53832 -11:39:26.041 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:39:26.041 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/129958347 -11:39:26.041 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Notify connected event to listeners. -11:39:26.091 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -11:39:26.145 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -11:39:26.586 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Receive server push request, request = NotifySubscriberRequest, requestId = 53 -11:39:26.593 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5ba9dcbf-ec31-49ce-96c2-d20ebfaea72e] Ack server push request, request = NotifySubscriberRequest, requestId = 53 -11:39:28.053 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 27.309 seconds (JVM running for 29.802) -11:39:28.069 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -11:39:28.070 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -11:39:28.071 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -11:39:29.539 [RMI TCP Connection(6)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -11:39:29.599 [RMI TCP Connection(7)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -11:39:30.095 [RMI TCP Connection(7)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -11:43:34.067 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -11:43:34.091 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -11:43:34.433 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -11:43:34.433 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@65063bc1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -11:43:34.434 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723001967375_192.168.110.85_53832 -11:43:34.437 [nacos-grpc-client-executor-58] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723001967375_192.168.110.85_53832]Ignore complete event,isRunning:false,isAbandon=false -11:43:34.444 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5414f0d7[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 59] -11:43:34.606 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -11:43:34.630 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -11:43:50.215 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:43:52.438 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2bedefe0-ec60-4501-906e-fe23a31e764d_config-0 -11:43:52.527 [main] INFO o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values -11:43:52.571 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -11:43:52.591 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -11:43:52.876 [main] INFO o.r.Reflections - [scan,232] - Reflections took 280 ms to scan 224 urls, producing 0 keys and 0 values -11:43:52.889 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -11:43:52.909 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -11:43:52.928 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -11:43:53.146 [main] INFO o.r.Reflections - [scan,232] - Reflections took 214 ms to scan 224 urls, producing 0 keys and 0 values -11:43:53.151 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:43:53.152 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/48071225 -11:43:53.153 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/74606989 -11:43:53.154 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:43:53.156 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:43:53.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:43:56.360 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723002237558_192.168.110.85_53969 -11:43:56.362 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Notify connected event to listeners. -11:43:56.364 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:43:56.365 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2bedefe0-ec60-4501-906e-fe23a31e764d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/77029509 -11:43:56.499 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:44:00.469 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -11:44:00.470 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:44:00.470 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:44:00.900 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:44:06.712 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:44:12.150 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 728cc824-2c3c-4857-ae26-e13cd6a4a7a8 -11:44:12.152 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] RpcClient init label, labels = {module=naming, source=sdk} -11:44:12.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:44:12.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:44:12.156 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:44:12.157 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:44:12.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723002253626_192.168.110.85_53975 -11:44:12.289 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Notify connected event to listeners. -11:44:12.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:44:12.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/77029509 -11:44:12.335 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -11:44:12.379 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -11:44:12.876 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Receive server push request, request = NotifySubscriberRequest, requestId = 60 -11:44:12.883 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [728cc824-2c3c-4857-ae26-e13cd6a4a7a8] Ack server push request, request = NotifySubscriberRequest, requestId = 60 -11:44:14.198 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 25.87 seconds (JVM running for 32.795) -11:44:14.214 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -11:44:14.215 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -11:44:14.216 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -11:44:16.512 [RMI TCP Connection(6)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -11:44:16.738 [RMI TCP Connection(7)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -11:44:17.483 [RMI TCP Connection(7)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -12:05:18.752 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -12:05:18.757 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -12:05:19.083 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -12:05:19.084 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1712e9d8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -12:05:19.084 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002253626_192.168.110.85_53975 -12:05:19.090 [nacos-grpc-client-executor-260] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723002253626_192.168.110.85_53975]Ignore complete event,isRunning:false,isAbandon=false -12:05:19.094 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@38c1635a[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 261] -12:05:19.238 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -12:05:19.254 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -14:20:58.965 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:21:01.120 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f92291ea-41d9-46e6-820f-82427adb3a88_config-0 -14:21:01.213 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -14:21:01.262 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -14:21:01.280 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -14:21:01.565 [main] INFO o.r.Reflections - [scan,232] - Reflections took 279 ms to scan 224 urls, producing 0 keys and 0 values -14:21:01.579 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -14:21:01.601 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -14:21:01.618 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -14:21:01.849 [main] INFO o.r.Reflections - [scan,232] - Reflections took 226 ms to scan 224 urls, producing 0 keys and 0 values -14:21:01.853 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:21:01.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/39661414 -14:21:01.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1513071903 -14:21:01.856 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:21:01.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:21:01.873 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:21:05.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723011666391_192.168.110.85_55392 -14:21:05.091 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Notify connected event to listeners. -14:21:05.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:21:05.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f92291ea-41d9-46e6-820f-82427adb3a88_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1911379471 -14:21:05.220 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:21:09.158 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -14:21:09.158 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:21:09.159 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:21:09.405 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:21:15.098 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:21:22.776 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a07872f4-0aac-4bd8-818d-3db467ed5342 -14:21:22.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] RpcClient init label, labels = {module=naming, source=sdk} -14:21:22.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:21:22.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:21:22.780 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:21:22.781 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:21:22.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723011684325_192.168.110.85_55413 -14:21:22.908 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Notify connected event to listeners. -14:21:22.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:21:22.909 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1911379471 -14:21:23.005 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -14:21:23.168 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -14:21:23.503 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Receive server push request, request = NotifySubscriberRequest, requestId = 94 -14:21:23.510 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a07872f4-0aac-4bd8-818d-3db467ed5342] Ack server push request, request = NotifySubscriberRequest, requestId = 94 -14:21:25.131 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 28.488 seconds (JVM running for 31.103) -14:21:25.148 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -14:21:25.149 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -14:21:25.150 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -14:21:25.469 [RMI TCP Connection(5)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -14:21:25.762 [RMI TCP Connection(5)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -14:21:26.677 [RMI TCP Connection(7)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:55:37.514 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:55:37.518 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:55:37.859 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:55:37.860 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@505a03b4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:55:37.860 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723011684325_192.168.110.85_55413 -15:55:37.863 [nacos-grpc-client-executor-1134] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723011684325_192.168.110.85_55413]Ignore complete event,isRunning:false,isAbandon=false -15:55:37.866 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7142c171[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 1135] -15:55:38.030 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:55:38.041 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:56:02.540 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:56:08.449 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0 -15:56:08.568 [main] INFO o.r.Reflections - [scan,232] - Reflections took 72 ms to scan 1 urls, producing 3 keys and 6 values -15:56:08.647 [main] INFO o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 4 keys and 9 values -15:56:08.674 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values -15:56:09.134 [main] INFO o.r.Reflections - [scan,232] - Reflections took 451 ms to scan 224 urls, producing 0 keys and 0 values -15:56:09.153 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values -15:56:09.187 [main] INFO o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 1 keys and 7 values -15:56:09.207 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -15:56:09.530 [main] INFO o.r.Reflections - [scan,232] - Reflections took 318 ms to scan 224 urls, producing 0 keys and 0 values -15:56:09.534 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:56:09.536 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/687372448 -15:56:09.536 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/541135648 -15:56:09.538 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:56:09.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:56:09.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:56:15.107 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723017376455_192.168.110.85_51917 -15:56:15.109 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Notify connected event to listeners. -15:56:15.111 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:56:15.113 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6c8d145-64f3-45ab-bf5f-a8ac40defa62_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1432687668 -15:56:15.266 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:56:19.775 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -15:56:19.775 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:56:19.775 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:56:20.093 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:56:22.374 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:01:42.710 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:01:44.677 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0 -16:01:44.765 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values -16:01:44.814 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -16:01:44.833 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:01:45.129 [main] INFO o.r.Reflections - [scan,232] - Reflections took 291 ms to scan 224 urls, producing 0 keys and 0 values -16:01:45.143 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -16:01:45.165 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -16:01:45.181 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -16:01:45.417 [main] INFO o.r.Reflections - [scan,232] - Reflections took 232 ms to scan 224 urls, producing 0 keys and 0 values -16:01:45.418 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:01:45.420 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/715534618 -16:01:45.420 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/102709691 -16:01:45.421 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:01:45.423 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:01:45.438 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:01:48.768 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723017710121_192.168.110.85_62489 -16:01:48.769 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Notify connected event to listeners. -16:01:48.772 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:01:48.772 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3fafc1bf-b236-4e6a-9a9a-84b87eebda7f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/657628458 -16:01:48.898 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:01:53.258 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:01:53.259 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:01:53.259 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:01:53.549 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:01:55.511 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:03:33.026 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:03:35.600 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0 -16:03:35.782 [main] INFO o.r.Reflections - [scan,232] - Reflections took 99 ms to scan 1 urls, producing 3 keys and 6 values -16:03:35.875 [main] INFO o.r.Reflections - [scan,232] - Reflections took 29 ms to scan 1 urls, producing 4 keys and 9 values -16:03:35.900 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 3 keys and 10 values -16:03:36.462 [main] INFO o.r.Reflections - [scan,232] - Reflections took 550 ms to scan 224 urls, producing 0 keys and 0 values -16:03:36.479 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -16:03:36.505 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 7 values -16:03:36.524 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -16:03:36.960 [main] INFO o.r.Reflections - [scan,232] - Reflections took 432 ms to scan 224 urls, producing 0 keys and 0 values -16:03:36.966 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:03:36.968 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1658520865 -16:03:36.969 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/457893088 -16:03:36.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:03:36.974 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:03:37.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:03:40.543 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723017821902_192.168.110.85_51711 -16:03:40.544 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Notify connected event to listeners. -16:03:40.546 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:03:40.547 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [86e4ef0d-30a2-4b5b-9b08-1a4e9e11e45e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1805672691 -16:03:40.679 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:03:44.936 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:03:44.937 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:03:44.937 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:03:45.198 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:03:47.184 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:08:14.336 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:08:16.598 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0 -16:08:16.690 [main] INFO o.r.Reflections - [scan,232] - Reflections took 59 ms to scan 1 urls, producing 3 keys and 6 values -16:08:16.739 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -16:08:16.760 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:08:17.100 [main] INFO o.r.Reflections - [scan,232] - Reflections took 330 ms to scan 224 urls, producing 0 keys and 0 values -16:08:17.115 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -16:08:17.143 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 7 values -16:08:17.161 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -16:08:17.461 [main] INFO o.r.Reflections - [scan,232] - Reflections took 291 ms to scan 224 urls, producing 0 keys and 0 values -16:08:17.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:08:17.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/979117606 -16:08:17.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/239648666 -16:08:17.468 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:08:17.470 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:08:17.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:08:20.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723018102329_192.168.110.85_52547 -16:08:20.986 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Notify connected event to listeners. -16:08:20.989 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:08:20.991 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e73973ca-f21f-4493-ac56-a9c2e4bd711b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/904808047 -16:08:21.142 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:08:25.613 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:08:25.614 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:08:25.614 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:08:25.879 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:08:28.049 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:10:05.010 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:10:06.998 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 41658d3b-90e0-4dd9-8c25-508c316356d8_config-0 -16:10:07.087 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values -16:10:07.138 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -16:10:07.157 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:10:07.441 [main] INFO o.r.Reflections - [scan,232] - Reflections took 279 ms to scan 224 urls, producing 0 keys and 0 values -16:10:07.455 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -16:10:07.476 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -16:10:07.494 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -16:10:07.759 [main] INFO o.r.Reflections - [scan,232] - Reflections took 262 ms to scan 224 urls, producing 0 keys and 0 values -16:10:07.760 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:10:07.762 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1522975986 -16:10:07.762 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/715534618 -16:10:07.763 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:10:07.764 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:10:07.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:10:11.039 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723018212396_192.168.110.85_50094 -16:10:11.040 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Notify connected event to listeners. -16:10:11.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:10:11.044 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [41658d3b-90e0-4dd9-8c25-508c316356d8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/493690178 -16:10:11.186 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:10:15.369 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:10:15.369 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:10:15.369 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:10:15.657 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:10:17.650 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:12:46.114 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:12:48.467 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0 -16:12:48.576 [main] INFO o.r.Reflections - [scan,232] - Reflections took 67 ms to scan 1 urls, producing 3 keys and 6 values -16:12:48.631 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values -16:12:48.663 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values -16:12:49.021 [main] INFO o.r.Reflections - [scan,232] - Reflections took 351 ms to scan 224 urls, producing 0 keys and 0 values -16:12:49.040 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 5 values -16:12:49.064 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 7 values -16:12:49.085 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values -16:12:49.403 [main] INFO o.r.Reflections - [scan,232] - Reflections took 314 ms to scan 224 urls, producing 0 keys and 0 values -16:12:49.412 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:12:49.413 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/666040998 -16:12:49.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1680365850 -16:12:49.415 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:12:49.416 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:12:49.432 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:12:53.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723018374504_192.168.110.85_50309 -16:12:53.173 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Notify connected event to listeners. -16:12:53.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:12:53.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [026170d7-ea72-4d3e-bb9e-9e3f5b98914f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1049650037 -16:12:53.325 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:12:58.562 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:12:58.563 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:12:58.564 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:12:58.865 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:13:06.591 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:13:12.832 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bd62e781-6231-4697-b182-dcb48740514b -16:13:12.833 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] RpcClient init label, labels = {module=naming, source=sdk} -16:13:12.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:13:12.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:13:12.837 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:13:12.837 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:13:12.994 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723018394459_192.168.110.85_50331 -16:13:12.995 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Notify connected event to listeners. -16:13:12.995 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:13:12.996 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1049650037 -16:13:13.064 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:13:13.118 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:13:13.632 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Receive server push request, request = NotifySubscriberRequest, requestId = 95 -16:13:13.644 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd62e781-6231-4697-b182-dcb48740514b] Ack server push request, request = NotifySubscriberRequest, requestId = 95 -16:13:15.361 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 31.442 seconds (JVM running for 33.821) -16:13:15.380 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:13:15.383 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:13:15.384 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:13:16.350 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:13:16.377 [RMI TCP Connection(4)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:13:16.922 [RMI TCP Connection(4)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:19:33.157 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:19:33.192 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:19:33.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:19:33.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7e7b6d32[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:19:33.530 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723018394459_192.168.110.85_50331 -16:19:33.547 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3743a6d4[Running, pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 84] -16:19:33.562 [nacos-grpc-client-executor-84] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723018394459_192.168.110.85_50331]Ignore complete event,isRunning:false,isAbandon=false -16:19:33.709 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:19:33.757 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:19:43.840 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:19:46.190 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0278bfd0-486e-4267-a15e-a37bac85609f_config-0 -16:19:46.287 [main] INFO o.r.Reflections - [scan,232] - Reflections took 61 ms to scan 1 urls, producing 3 keys and 6 values -16:19:46.353 [main] INFO o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 4 keys and 9 values -16:19:46.376 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values -16:19:46.754 [main] INFO o.r.Reflections - [scan,232] - Reflections took 365 ms to scan 224 urls, producing 0 keys and 0 values -16:19:46.776 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 5 values -16:19:46.803 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values -16:19:46.825 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -16:19:47.056 [main] INFO o.r.Reflections - [scan,232] - Reflections took 226 ms to scan 224 urls, producing 0 keys and 0 values -16:19:47.061 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:19:47.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/755944228 -16:19:47.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1298483237 -16:19:47.065 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:19:47.066 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:19:47.081 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:19:50.564 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723018791924_192.168.110.85_51625 -16:19:50.566 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Notify connected event to listeners. -16:19:50.568 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:19:50.569 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0278bfd0-486e-4267-a15e-a37bac85609f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/918200393 -16:19:50.701 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:19:54.888 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:19:54.889 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:19:54.889 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:19:55.144 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:20:07.892 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:20:16.083 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 34ba4839-e3ec-4dc2-9650-b3b5862bd516 -16:20:16.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] RpcClient init label, labels = {module=naming, source=sdk} -16:20:16.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:20:16.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:20:16.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:20:16.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:20:16.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723018817698_192.168.110.85_51633 -16:20:16.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:20:16.214 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Notify connected event to listeners. -16:20:16.214 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/918200393 -16:20:16.270 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:20:16.343 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:20:16.824 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Receive server push request, request = NotifySubscriberRequest, requestId = 96 -16:20:16.832 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [34ba4839-e3ec-4dc2-9650-b3b5862bd516] Ack server push request, request = NotifySubscriberRequest, requestId = 96 -16:20:18.195 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 36.423 seconds (JVM running for 38.356) -16:20:18.210 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:20:18.212 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:20:18.213 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:20:19.839 [RMI TCP Connection(11)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:20:19.984 [RMI TCP Connection(10)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:20:20.475 [RMI TCP Connection(10)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:24:17.705 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:24:17.720 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:24:18.100 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:24:18.101 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@25d0d4a4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:24:18.101 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723018817698_192.168.110.85_51633 -16:24:18.111 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@539cf06a[Running, pool size = 6, active threads = 1, queued tasks = 0, completed tasks = 58] -16:24:18.124 [nacos-grpc-client-executor-58] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723018817698_192.168.110.85_51633]Ignore complete event,isRunning:false,isAbandon=false -16:24:18.266 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:24:18.279 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:24:27.848 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:24:29.850 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d760eefd-22a0-4083-b835-ccae321aa10e_config-0 -16:24:29.942 [main] INFO o.r.Reflections - [scan,232] - Reflections took 59 ms to scan 1 urls, producing 3 keys and 6 values -16:24:29.991 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -16:24:30.008 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -16:24:30.294 [main] INFO o.r.Reflections - [scan,232] - Reflections took 281 ms to scan 224 urls, producing 0 keys and 0 values -16:24:30.309 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -16:24:30.330 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -16:24:30.351 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -16:24:30.577 [main] INFO o.r.Reflections - [scan,232] - Reflections took 223 ms to scan 224 urls, producing 0 keys and 0 values -16:24:30.582 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:24:30.583 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1198426006 -16:24:30.584 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1324165839 -16:24:30.585 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:24:30.586 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:24:30.605 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:24:33.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019075303_192.168.110.85_62844 -16:24:33.941 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Notify connected event to listeners. -16:24:33.943 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:24:33.944 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d760eefd-22a0-4083-b835-ccae321aa10e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1583001542 -16:24:34.071 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:24:38.145 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:24:38.145 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:24:38.146 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:24:38.399 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:24:44.184 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:24:49.368 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0d45e287-9736-4758-840e-08ecfe441e0d -16:24:49.368 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] RpcClient init label, labels = {module=naming, source=sdk} -16:24:49.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:24:49.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:24:49.373 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:24:49.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:24:49.495 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019090986_192.168.110.85_62847 -16:24:49.495 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:24:49.495 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Notify connected event to listeners. -16:24:49.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1583001542 -16:24:49.594 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:24:49.661 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:24:50.101 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Receive server push request, request = NotifySubscriberRequest, requestId = 97 -16:24:50.110 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d45e287-9736-4758-840e-08ecfe441e0d] Ack server push request, request = NotifySubscriberRequest, requestId = 97 -16:24:51.728 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 25.923 seconds (JVM running for 27.837) -16:24:51.745 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:24:51.746 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:24:51.747 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:24:53.126 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:24:53.155 [RMI TCP Connection(4)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:24:53.728 [RMI TCP Connection(4)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:26:20.245 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:26:20.257 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:26:20.585 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:26:20.585 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@66ef9d83[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:26:20.585 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723019090986_192.168.110.85_62847 -16:26:20.589 [nacos-grpc-client-executor-27] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723019090986_192.168.110.85_62847]Ignore complete event,isRunning:false,isAbandon=false -16:26:20.594 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@52f69cbd[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 28] -16:26:20.750 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:26:20.769 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:26:31.316 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:26:33.410 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0 -16:26:33.508 [main] INFO o.r.Reflections - [scan,232] - Reflections took 59 ms to scan 1 urls, producing 3 keys and 6 values -16:26:33.560 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 4 keys and 9 values -16:26:33.579 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:26:33.900 [main] INFO o.r.Reflections - [scan,232] - Reflections took 314 ms to scan 224 urls, producing 0 keys and 0 values -16:26:33.914 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -16:26:33.936 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -16:26:33.954 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -16:26:34.181 [main] INFO o.r.Reflections - [scan,232] - Reflections took 224 ms to scan 224 urls, producing 0 keys and 0 values -16:26:34.185 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:26:34.187 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/603184112 -16:26:34.187 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/836170750 -16:26:34.189 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:26:34.190 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:26:34.205 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:26:37.612 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019198977_192.168.110.85_62917 -16:26:37.614 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Notify connected event to listeners. -16:26:37.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:26:37.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9401751a-d0b1-48bc-859d-ef97a80fe67d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/498537855 -16:26:37.839 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:26:42.342 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:26:42.343 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:26:42.343 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:26:42.674 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:26:49.530 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:26:54.943 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5d4e8517-2b67-44a5-a6aa-ba791f7b6898 -16:26:54.943 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] RpcClient init label, labels = {module=naming, source=sdk} -16:26:54.947 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:26:54.947 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:26:54.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:26:54.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:26:55.073 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019216568_192.168.110.85_51976 -16:26:55.074 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Notify connected event to listeners. -16:26:55.074 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:26:55.074 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/498537855 -16:26:55.184 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:26:55.255 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:26:55.698 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Receive server push request, request = NotifySubscriberRequest, requestId = 98 -16:26:55.705 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5d4e8517-2b67-44a5-a6aa-ba791f7b6898] Ack server push request, request = NotifySubscriberRequest, requestId = 98 -16:26:57.205 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 27.792 seconds (JVM running for 29.863) -16:26:57.222 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:26:57.223 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:26:57.224 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:26:58.307 [RMI TCP Connection(4)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:26:58.361 [RMI TCP Connection(3)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:26:59.090 [RMI TCP Connection(3)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:27:20.096 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:27:20.106 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:27:20.432 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:27:20.433 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3c49d9c8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:27:20.433 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723019216568_192.168.110.85_51976 -16:27:20.440 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4c541123[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 13] -16:27:20.585 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:27:20.603 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:27:30.599 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:27:32.614 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0 -16:27:32.705 [main] INFO o.r.Reflections - [scan,232] - Reflections took 57 ms to scan 1 urls, producing 3 keys and 6 values -16:27:32.751 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -16:27:32.770 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -16:27:33.060 [main] INFO o.r.Reflections - [scan,232] - Reflections took 284 ms to scan 224 urls, producing 0 keys and 0 values -16:27:33.074 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -16:27:33.094 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -16:27:33.112 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -16:27:33.340 [main] INFO o.r.Reflections - [scan,232] - Reflections took 223 ms to scan 224 urls, producing 0 keys and 0 values -16:27:33.342 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:27:33.343 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1911600942 -16:27:33.343 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2050291306 -16:27:33.345 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:27:33.346 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:27:33.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:27:36.696 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019258058_192.168.110.85_52041 -16:27:36.698 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Notify connected event to listeners. -16:27:36.700 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:27:36.701 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d2aa755-134f-4a9d-aeb3-e15b25065a99_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/196954001 -16:27:36.850 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:27:40.945 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:27:40.945 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:27:40.946 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:27:41.208 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:27:47.745 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:27:53.617 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ce45b8ae-c728-45a1-b8b3-70ac70c36dd8 -16:27:53.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] RpcClient init label, labels = {module=naming, source=sdk} -16:27:53.621 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:27:53.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:27:53.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:27:53.623 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:27:53.752 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019275238_192.168.110.85_52055 -16:27:53.753 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:27:53.753 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Notify connected event to listeners. -16:27:53.754 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/196954001 -16:27:53.803 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:27:53.849 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:27:54.332 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Receive server push request, request = NotifySubscriberRequest, requestId = 99 -16:27:54.338 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce45b8ae-c728-45a1-b8b3-70ac70c36dd8] Ack server push request, request = NotifySubscriberRequest, requestId = 99 -16:27:55.755 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 27.071 seconds (JVM running for 29.019) -16:27:55.771 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:27:55.772 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:27:55.774 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:27:56.656 [RMI TCP Connection(10)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:27:56.812 [RMI TCP Connection(9)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:27:57.470 [RMI TCP Connection(9)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:28:36.280 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:28:36.294 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:28:36.684 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:28:36.685 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@50c97fcc[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:28:36.686 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723019275238_192.168.110.85_52055 -16:28:36.703 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2d62386b[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 17] -16:28:36.876 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:28:36.892 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:28:47.702 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:28:49.650 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 02b9b495-e999-44fe-b319-df811dd39f9a_config-0 -16:28:49.738 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values -16:28:49.790 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -16:28:49.809 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:28:50.093 [main] INFO o.r.Reflections - [scan,232] - Reflections took 276 ms to scan 224 urls, producing 0 keys and 0 values -16:28:50.108 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -16:28:50.129 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -16:28:50.148 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -16:28:50.379 [main] INFO o.r.Reflections - [scan,232] - Reflections took 228 ms to scan 224 urls, producing 0 keys and 0 values -16:28:50.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:28:50.382 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/299162582 -16:28:50.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1867177582 -16:28:50.385 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:28:50.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:28:50.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:28:53.666 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019335032_192.168.110.85_52114 -16:28:53.668 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Notify connected event to listeners. -16:28:53.670 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:28:53.670 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02b9b495-e999-44fe-b319-df811dd39f9a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1135400862 -16:28:53.799 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:28:57.817 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:28:57.818 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:28:57.818 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:28:58.110 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:29:03.842 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:29:08.809 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f24c388d-b0c7-4ea6-80c6-fa36023b6b03 -16:29:08.810 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] RpcClient init label, labels = {module=naming, source=sdk} -16:29:08.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:29:08.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:29:08.814 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:29:08.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:29:08.951 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019350435_192.168.110.85_52122 -16:29:08.951 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:29:08.951 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Notify connected event to listeners. -16:29:08.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1135400862 -16:29:09.005 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:29:09.104 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:29:09.497 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Receive server push request, request = NotifySubscriberRequest, requestId = 100 -16:29:09.506 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f24c388d-b0c7-4ea6-80c6-fa36023b6b03] Ack server push request, request = NotifySubscriberRequest, requestId = 100 -16:29:11.059 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 25.349 seconds (JVM running for 27.287) -16:29:11.078 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:29:11.079 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:29:11.081 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:29:12.254 [RMI TCP Connection(5)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:29:12.284 [RMI TCP Connection(6)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:29:12.715 [RMI TCP Connection(6)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:31:17.462 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:31:17.466 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:31:17.802 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:31:17.802 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7b9bae7b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:31:17.802 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723019350435_192.168.110.85_52122 -16:31:17.806 [nacos-grpc-client-executor-35] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723019350435_192.168.110.85_52122]Ignore complete event,isRunning:false,isAbandon=false -16:31:17.810 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@10dc0c47[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 36] -16:31:17.952 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:31:17.968 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:31:31.063 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:31:33.092 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0 -16:31:33.189 [main] INFO o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 3 keys and 6 values -16:31:33.236 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -16:31:33.257 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values -16:31:33.600 [main] INFO o.r.Reflections - [scan,232] - Reflections took 336 ms to scan 224 urls, producing 0 keys and 0 values -16:31:33.616 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -16:31:33.637 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -16:31:33.656 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -16:31:33.914 [main] INFO o.r.Reflections - [scan,232] - Reflections took 255 ms to scan 224 urls, producing 0 keys and 0 values -16:31:33.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:31:33.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/936931778 -16:31:33.920 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1001351478 -16:31:33.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:31:33.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:31:33.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:31:37.635 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019499011_192.168.110.85_59233 -16:31:37.637 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Notify connected event to listeners. -16:31:37.639 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:31:37.640 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f284f4a4-218e-43a6-8cfc-00ecbb417959_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1400324426 -16:31:37.758 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:31:41.859 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:31:41.860 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:31:41.861 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:31:42.120 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:31:47.948 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:31:52.954 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2 -16:31:52.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] RpcClient init label, labels = {module=naming, source=sdk} -16:31:52.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:31:52.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:31:52.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:31:52.960 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:31:53.090 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723019514575_192.168.110.85_59234 -16:31:53.090 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Notify connected event to listeners. -16:31:53.090 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:31:53.091 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1400324426 -16:31:53.140 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:31:53.189 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:31:53.685 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Receive server push request, request = NotifySubscriberRequest, requestId = 101 -16:31:53.694 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Ack server push request, request = NotifySubscriberRequest, requestId = 101 -16:31:54.974 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 25.846 seconds (JVM running for 27.714) -16:31:54.989 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:31:54.993 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:31:54.994 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:31:55.832 [RMI TCP Connection(2)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:31:55.862 [RMI TCP Connection(1)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:31:56.227 [RMI TCP Connection(1)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -18:21:19.439 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -18:21:19.453 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -18:21:20.364 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -18:21:20.389 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2cf11f01[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -18:21:20.390 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723019514575_192.168.110.85_59234 -18:21:20.976 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1c747825[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 1316] -18:21:20.991 [nacos-grpc-client-executor-1316] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Receive server push request, request = NotifySubscriberRequest, requestId = 102 -18:21:21.286 [nacos-grpc-client-executor-1316] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a2c32ed-a747-40b6-8e9e-bd9bbd920bc2] Ack server push request, request = NotifySubscriberRequest, requestId = 102 -18:21:21.289 [nacos-grpc-client-executor-1316] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723019514575_192.168.110.85_59234]Ignore complete event,isRunning:false,isAbandon=false -18:21:21.587 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -18:21:21.597 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. diff --git a/logs/ruoyi-chargingPile/info.2024-08-09.log b/logs/ruoyi-chargingPile/info.2024-08-09.log deleted file mode 100644 index 986f18a..0000000 --- a/logs/ruoyi-chargingPile/info.2024-08-09.log +++ /dev/null @@ -1,506 +0,0 @@ -13:51:07.439 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -13:51:09.611 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0 -13:51:09.775 [main] INFO o.r.Reflections - [scan,232] - Reflections took 127 ms to scan 1 urls, producing 3 keys and 6 values -13:51:09.824 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -13:51:09.849 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values -13:51:10.129 [main] INFO o.r.Reflections - [scan,232] - Reflections took 274 ms to scan 273 urls, producing 0 keys and 0 values -13:51:10.145 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -13:51:10.162 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -13:51:10.183 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values -13:51:10.438 [main] INFO o.r.Reflections - [scan,232] - Reflections took 250 ms to scan 273 urls, producing 0 keys and 0 values -13:51:10.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -13:51:10.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1758876146 -13:51:10.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/987015126 -13:51:10.447 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -13:51:10.448 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -13:51:10.468 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:51:13.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182674417_192.168.110.85_62573 -13:51:13.722 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Notify connected event to listeners. -13:51:13.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:51:13.729 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7d5a705-0602-4b90-bc31-c8d2c1e27e49_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1752220610 -13:51:13.906 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -13:51:18.192 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -13:51:18.311 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -13:51:18.326 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -13:51:18.444 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -13:51:18.585 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -13:51:18.706 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2 -13:51:18.707 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] RpcClient init label, labels = {module=naming, source=sdk} -13:51:18.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -13:51:18.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -13:51:18.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -13:51:18.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:51:18.845 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182679673_192.168.110.85_62579 -13:51:18.846 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Notify connected event to listeners. -13:51:18.846 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:51:18.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1752220610 -13:51:18.955 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -13:51:19.031 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -13:51:19.032 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -13:51:19.051 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -13:51:19.051 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -13:51:19.052 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -13:51:19.397 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Receive server push request, request = NotifySubscriberRequest, requestId = 105 -13:51:19.398 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d3b66c7-bbe4-4fbb-ac97-42cc9788a3c2] Ack server push request, request = NotifySubscriberRequest, requestId = 105 -13:51:20.377 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -13:51:20.378 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -13:51:20.378 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -13:51:20.828 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -13:51:21.197 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -13:51:21.543 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -13:51:28.633 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$599a1300] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -13:51:29.852 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -13:51:35.101 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7c272575-48d4-4981-b4d1-edc8e30fa0a8 -13:51:35.103 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] RpcClient init label, labels = {module=naming, source=sdk} -13:51:35.103 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -13:51:35.104 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -13:51:35.104 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -13:51:35.105 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:51:35.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182696055_192.168.110.85_62596 -13:51:35.234 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Notify connected event to listeners. -13:51:35.234 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:51:35.235 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1752220610 -13:51:35.250 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -13:51:35.343 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -13:51:35.829 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Receive server push request, request = NotifySubscriberRequest, requestId = 106 -13:51:35.838 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7c272575-48d4-4981-b4d1-edc8e30fa0a8] Ack server push request, request = NotifySubscriberRequest, requestId = 106 -13:51:37.337 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 32.519 seconds (JVM running for 37.08) -13:51:37.352 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -13:51:37.354 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -13:51:37.356 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -13:51:38.873 [RMI TCP Connection(4)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -13:53:55.806 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -13:53:55.811 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -13:53:56.144 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -13:53:56.144 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7b0b7da7[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -13:53:56.145 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723182696055_192.168.110.85_62596 -13:53:56.151 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@159612e7[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 38] -13:53:56.327 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -13:53:56.345 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -13:54:09.774 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -13:54:11.742 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0 -13:54:11.825 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -13:54:11.874 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -13:54:11.898 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values -13:54:12.160 [main] INFO o.r.Reflections - [scan,232] - Reflections took 257 ms to scan 273 urls, producing 0 keys and 0 values -13:54:12.175 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -13:54:12.198 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -13:54:12.217 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -13:54:12.465 [main] INFO o.r.Reflections - [scan,232] - Reflections took 243 ms to scan 273 urls, producing 0 keys and 0 values -13:54:12.466 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -13:54:12.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1981372076 -13:54:12.468 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1905758022 -13:54:12.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -13:54:12.471 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -13:54:12.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:54:15.760 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182856469_192.168.110.85_57697 -13:54:15.761 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Notify connected event to listeners. -13:54:15.763 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:54:15.764 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [034fc2d0-0b6a-4919-bcdc-c61009fb9df8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1246023616 -13:54:15.897 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -13:54:19.375 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -13:54:19.461 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -13:54:19.468 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -13:54:19.559 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -13:54:19.681 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -13:54:19.793 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b -13:54:19.794 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] RpcClient init label, labels = {module=naming, source=sdk} -13:54:19.796 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -13:54:19.797 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -13:54:19.798 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -13:54:19.799 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:54:19.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182860752_192.168.110.85_57701 -13:54:19.924 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Notify connected event to listeners. -13:54:19.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:54:19.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1246023616 -13:54:19.990 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -13:54:20.006 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -13:54:20.007 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -13:54:20.020 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -13:54:20.020 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -13:54:20.020 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -13:54:20.518 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Receive server push request, request = NotifySubscriberRequest, requestId = 109 -13:54:20.519 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [43ebf5fc-2c0c-4e8b-af8e-ceb86afe238b] Ack server push request, request = NotifySubscriberRequest, requestId = 109 -13:54:21.043 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -13:54:21.044 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -13:54:21.044 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -13:54:21.485 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -13:54:21.773 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -13:54:22.048 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -13:54:28.483 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$2eda8772] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -13:54:29.600 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -13:54:34.703 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d66fbb38-cc11-47c6-a1b5-02f3ce578943 -13:54:34.704 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] RpcClient init label, labels = {module=naming, source=sdk} -13:54:34.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -13:54:34.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -13:54:34.706 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -13:54:34.706 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:54:34.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182875659_192.168.110.85_57718 -13:54:34.836 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Notify connected event to listeners. -13:54:34.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:54:34.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/1246023616 -13:54:34.850 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -13:54:34.886 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -13:54:35.437 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Receive server push request, request = NotifySubscriberRequest, requestId = 111 -13:54:35.445 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d66fbb38-cc11-47c6-a1b5-02f3ce578943] Ack server push request, request = NotifySubscriberRequest, requestId = 111 -13:54:36.910 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 29.136 seconds (JVM running for 31.455) -13:54:36.930 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -13:54:36.933 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -13:54:36.934 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -13:54:37.215 [RMI TCP Connection(1)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:06:47.000 [http-nio-9300-exec-2] INFO i.s.t.TransactionManagerHolder - [<clinit>,40] - TransactionManager Singleton io.seata.tm.DefaultTransactionManager@2a09841c -15:09:11.313 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:09:11.321 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:09:11.719 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:09:11.719 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4f507013[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:09:11.720 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723182875659_192.168.110.85_57718 -15:09:11.729 [SpringContextShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@54684b95[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 903] -15:09:12.453 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:09:12.458 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -17:18:53.683 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:18:56.553 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 80cbb272-582c-4936-a35f-9931d45105b8_config-0 -17:18:56.641 [main] INFO o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values -17:18:56.690 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -17:18:56.709 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -17:18:56.992 [main] INFO o.r.Reflections - [scan,232] - Reflections took 276 ms to scan 274 urls, producing 0 keys and 0 values -17:18:57.007 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:18:57.027 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -17:18:57.047 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -17:18:57.279 [main] INFO o.r.Reflections - [scan,232] - Reflections took 228 ms to scan 274 urls, producing 0 keys and 0 values -17:18:57.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:18:57.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1821581506 -17:18:57.285 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/873769155 -17:18:57.287 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:18:57.288 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:18:57.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:19:00.560 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195140348_192.168.110.85_63378 -17:19:00.562 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Notify connected event to listeners. -17:19:00.564 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:19:00.566 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [80cbb272-582c-4936-a35f-9931d45105b8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/972404515 -17:19:00.707 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:19:04.034 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:19:04.125 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:19:04.131 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -17:19:04.230 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:19:04.368 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:19:04.499 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 11a66be1-1a60-495d-a2c4-12b3437c0d03 -17:19:04.500 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] RpcClient init label, labels = {module=naming, source=sdk} -17:19:04.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:19:04.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:19:04.504 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:19:04.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:19:04.640 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195144545_192.168.110.85_63381 -17:19:04.640 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Notify connected event to listeners. -17:19:04.640 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:19:04.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/972404515 -17:19:04.699 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:19:04.712 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:19:04.713 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:19:04.728 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:19:04.729 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:19:04.729 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:19:05.206 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Receive server push request, request = NotifySubscriberRequest, requestId = 153 -17:19:05.206 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [11a66be1-1a60-495d-a2c4-12b3437c0d03] Ack server push request, request = NotifySubscriberRequest, requestId = 153 -17:19:05.821 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:19:05.822 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:19:05.822 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:19:06.263 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:19:06.531 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:19:06.772 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:19:09.716 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:19:09.733 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -17:19:09.741 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:23:55.729 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:23:58.254 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0 -17:23:58.348 [main] INFO o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values -17:23:58.399 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -17:23:58.428 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 10 values -17:23:58.711 [main] INFO o.r.Reflections - [scan,232] - Reflections took 278 ms to scan 274 urls, producing 0 keys and 0 values -17:23:58.727 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -17:23:58.749 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -17:23:58.768 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -17:23:59.021 [main] INFO o.r.Reflections - [scan,232] - Reflections took 247 ms to scan 274 urls, producing 0 keys and 0 values -17:23:59.027 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:23:59.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1762378078 -17:23:59.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/466056887 -17:23:59.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:23:59.031 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:23:59.048 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:24:02.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195442726_192.168.110.85_49792 -17:24:02.944 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Notify connected event to listeners. -17:24:02.946 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:24:02.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce2bf24b-45d3-4605-b375-f4cc9af91397_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/979387846 -17:24:03.103 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:24:08.067 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:24:08.177 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:24:08.184 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -17:24:08.291 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:24:08.424 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:24:08.565 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd -17:24:08.566 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] RpcClient init label, labels = {module=naming, source=sdk} -17:24:08.569 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:24:08.570 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:24:08.570 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:24:08.571 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:24:08.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195448607_192.168.110.85_49801 -17:24:08.694 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Notify connected event to listeners. -17:24:08.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:24:08.695 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/979387846 -17:24:08.754 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:24:08.768 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:24:08.769 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:24:08.782 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:24:08.782 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:24:08.783 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:24:09.279 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Receive server push request, request = NotifySubscriberRequest, requestId = 155 -17:24:09.280 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0d03075d-2dd7-41ed-9e91-cd7ffdc88dcd] Ack server push request, request = NotifySubscriberRequest, requestId = 155 -17:24:09.896 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:24:09.896 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:24:09.897 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:24:10.778 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:24:11.115 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:24:11.416 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:24:14.465 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:24:14.481 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -17:24:14.488 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:25:58.819 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:26:01.038 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7a580518-6879-4c8c-b29c-94492b256bb6_config-0 -17:26:01.124 [main] INFO o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values -17:26:01.214 [main] INFO o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 1 urls, producing 4 keys and 9 values -17:26:01.235 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values -17:26:01.585 [main] INFO o.r.Reflections - [scan,232] - Reflections took 343 ms to scan 274 urls, producing 0 keys and 0 values -17:26:01.599 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:26:01.621 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -17:26:01.638 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:26:02.293 [main] INFO o.r.Reflections - [scan,232] - Reflections took 651 ms to scan 274 urls, producing 0 keys and 0 values -17:26:02.318 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:26:02.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1841099284 -17:26:02.321 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1231696346 -17:26:02.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:26:02.327 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:26:02.350 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:07.230 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195567028_192.168.110.85_49940 -17:26:07.231 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Notify connected event to listeners. -17:26:07.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:07.234 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a580518-6879-4c8c-b29c-94492b256bb6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/25916650 -17:26:07.356 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:26:10.883 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:26:10.976 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:26:10.982 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -17:26:11.073 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:26:11.201 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:26:11.321 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b2a02486-3884-4c16-aa7d-66abd6022b25 -17:26:11.322 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] RpcClient init label, labels = {module=naming, source=sdk} -17:26:11.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:26:11.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:26:11.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:26:11.326 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:11.488 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195571392_192.168.110.85_49945 -17:26:11.489 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Notify connected event to listeners. -17:26:11.489 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:11.489 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/25916650 -17:26:11.545 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:26:11.560 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:26:11.561 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:26:11.577 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:26:11.577 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:26:11.577 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:26:12.054 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Receive server push request, request = NotifySubscriberRequest, requestId = 156 -17:26:12.054 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2a02486-3884-4c16-aa7d-66abd6022b25] Ack server push request, request = NotifySubscriberRequest, requestId = 156 -17:26:12.553 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:26:12.553 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:26:12.553 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:26:13.007 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:26:13.304 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:26:13.571 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:26:16.671 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$564e28fc] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -17:26:22.843 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:26:29.572 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of df22b0d2-23d5-45f5-8f5a-b704fd867a58 -17:26:29.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] RpcClient init label, labels = {module=naming, source=sdk} -17:26:29.573 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:26:29.573 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:26:29.573 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:26:29.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:29.753 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195589633_192.168.110.85_49972 -17:26:29.754 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Notify connected event to listeners. -17:26:29.754 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:29.755 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/25916650 -17:26:29.880 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -17:26:30.315 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Receive server push request, request = NotifySubscriberRequest, requestId = 157 -17:26:30.329 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Ack server push request, request = NotifySubscriberRequest, requestId = 157 -17:26:32.514 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 35.885 seconds (JVM running for 38.293) -17:26:32.530 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -17:26:32.531 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -17:26:32.532 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -17:26:33.083 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:26:33.095 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:26:33.634 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Receive server push request, request = NotifySubscriberRequest, requestId = 159 -17:26:33.638 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df22b0d2-23d5-45f5-8f5a-b704fd867a58] Ack server push request, request = NotifySubscriberRequest, requestId = 159 -17:26:33.746 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:26:33.746 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@78b7c510[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:26:33.747 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195589633_192.168.110.85_49972 -17:26:33.750 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723195589633_192.168.110.85_49972]Ignore complete event,isRunning:false,isAbandon=false -17:26:33.754 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@b226dc0[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 12] -17:26:33.792 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:26:33.809 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -17:26:40.798 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:26:42.751 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7b0cb749-fde5-4922-8c2d-07942020eba1_config-0 -17:26:42.831 [main] INFO o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values -17:26:42.878 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -17:26:42.905 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 10 values -17:26:43.177 [main] INFO o.r.Reflections - [scan,232] - Reflections took 267 ms to scan 274 urls, producing 0 keys and 0 values -17:26:43.192 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:26:43.216 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values -17:26:43.235 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -17:26:43.475 [main] INFO o.r.Reflections - [scan,232] - Reflections took 236 ms to scan 274 urls, producing 0 keys and 0 values -17:26:43.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:26:43.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/605201451 -17:26:43.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/72615125 -17:26:43.483 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:26:43.485 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:26:43.504 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:46.834 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195606621_192.168.110.85_50067 -17:26:46.835 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Notify connected event to listeners. -17:26:46.838 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:46.839 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b0cb749-fde5-4922-8c2d-07942020eba1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/700546109 -17:26:46.965 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:26:50.490 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:26:50.574 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:26:50.582 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -17:26:50.673 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:26:50.792 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:26:50.905 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8cdd07e6-6c42-4b2e-bb8e-094901cdb593 -17:26:50.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] RpcClient init label, labels = {module=naming, source=sdk} -17:26:50.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:26:50.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:26:50.909 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:26:50.909 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:51.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195610950_192.168.110.85_50071 -17:26:51.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:51.036 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Notify connected event to listeners. -17:26:51.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/700546109 -17:26:51.096 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:26:51.111 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:26:51.111 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:26:51.126 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:26:51.127 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:26:51.127 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:26:51.668 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Receive server push request, request = NotifySubscriberRequest, requestId = 161 -17:26:51.669 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8cdd07e6-6c42-4b2e-bb8e-094901cdb593] Ack server push request, request = NotifySubscriberRequest, requestId = 161 -17:26:52.156 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:26:52.156 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:26:52.157 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:26:52.592 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:26:52.876 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:26:53.151 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:26:56.220 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$bb28e694] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -17:27:00.724 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:27:05.834 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 15e31617-4d63-44ed-ae6b-e1df95ea1742 -17:27:05.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] RpcClient init label, labels = {module=naming, source=sdk} -17:27:05.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:27:05.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:27:05.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:27:05.837 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:27:05.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195625876_192.168.110.85_49907 -17:27:05.956 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Notify connected event to listeners. -17:27:05.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:27:05.957 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/700546109 -17:27:05.967 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -17:27:06.004 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -17:27:06.555 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Receive server push request, request = NotifySubscriberRequest, requestId = 162 -17:27:06.562 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15e31617-4d63-44ed-ae6b-e1df95ea1742] Ack server push request, request = NotifySubscriberRequest, requestId = 162 -17:27:08.077 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 29.489 seconds (JVM running for 31.512) -17:27:08.094 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -17:27:08.095 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -17:27:08.096 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -17:27:08.428 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:28:47.192 [http-nio-9300-exec-3] INFO i.s.t.TransactionManagerHolder - [<clinit>,40] - TransactionManager Singleton io.seata.tm.DefaultTransactionManager@303419c6 -17:35:32.534 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:35:32.547 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:35:32.884 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:35:32.884 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6b335231[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:35:32.885 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195625876_192.168.110.85_49907 -17:35:32.888 [nacos-grpc-client-executor-110] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723195625876_192.168.110.85_49907]Ignore complete event,isRunning:false,isAbandon=false -17:35:32.892 [SpringContextShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7b188ba1[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 111] -17:35:33.624 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:35:33.639 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -17:35:41.878 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:35:43.872 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0 -17:35:43.953 [main] INFO o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values -17:35:44.001 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -17:35:44.025 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values -17:35:44.287 [main] INFO o.r.Reflections - [scan,232] - Reflections took 256 ms to scan 274 urls, producing 0 keys and 0 values -17:35:44.302 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:35:44.321 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -17:35:44.340 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -17:35:44.575 [main] INFO o.r.Reflections - [scan,232] - Reflections took 230 ms to scan 274 urls, producing 0 keys and 0 values -17:35:44.580 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:35:44.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/292856581 -17:35:44.582 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1907808127 -17:35:44.583 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:35:44.584 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:35:44.602 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:35:48.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723196147794_192.168.110.85_50420 -17:35:48.004 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Notify connected event to listeners. -17:35:48.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:35:48.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5cb8e0a4-4da1-4eed-91aa-6b9abb574858_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/999663323 -17:35:48.165 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:35:51.683 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:35:51.775 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:35:51.781 [main] INFO i.s.c.ConfigurationFactory - [buildConfiguration,121] - load Configuration from :Spring Configuration -17:35:51.878 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:35:52.007 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:35:52.127 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c7147f77-d20a-4141-952f-fb1002b21278 -17:35:52.127 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] RpcClient init label, labels = {module=naming, source=sdk} -17:35:52.130 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:35:52.131 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:35:52.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:35:52.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:35:52.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723196152177_192.168.110.85_50424 -17:35:52.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:35:52.261 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Notify connected event to listeners. -17:35:52.261 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/999663323 -17:35:52.323 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:35:52.338 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:35:52.339 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:35:52.351 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:35:52.351 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[seata-chargingPile] txServiceGroup[seata_tx_group] -17:35:52.352 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:35:52.829 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Receive server push request, request = NotifySubscriberRequest, requestId = 181 -17:35:52.829 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c7147f77-d20a-4141-952f-fb1002b21278] Ack server push request, request = NotifySubscriberRequest, requestId = 181 -17:35:53.374 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:35:53.374 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:35:53.375 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:35:53.809 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:35:54.093 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:35:54.342 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:35:57.452 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$4b97af84] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -17:36:02.015 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:36:07.431 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 984ce0af-7c16-4f80-b161-f66ce203fbca -17:36:07.432 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] RpcClient init label, labels = {module=naming, source=sdk} -17:36:07.434 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:36:07.434 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:36:07.434 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:36:07.435 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:36:07.560 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723196167477_192.168.110.85_50447 -17:36:07.561 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Notify connected event to listeners. -17:36:07.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:36:07.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/999663323 -17:36:07.572 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -17:36:07.606 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -17:36:08.159 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Receive server push request, request = NotifySubscriberRequest, requestId = 182 -17:36:08.168 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [984ce0af-7c16-4f80-b161-f66ce203fbca] Ack server push request, request = NotifySubscriberRequest, requestId = 182 -17:36:09.646 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 30.036 seconds (JVM running for 32.12) -17:36:09.662 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -17:36:09.663 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -17:36:09.664 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -17:36:10.846 [RMI TCP Connection(5)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:39:02.230 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:39:02.239 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:39:02.571 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:39:02.571 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@19b248e3[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:39:02.571 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723196167477_192.168.110.85_50447 -17:39:02.574 [nacos-grpc-client-executor-43] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723196167477_192.168.110.85_50447]Ignore complete event,isRunning:false,isAbandon=false -17:39:02.580 [SpringContextShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3343f838[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 44] -17:39:02.738 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:39:02.757 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. diff --git a/logs/ruoyi-chargingPile/info.2024-08-15.log b/logs/ruoyi-chargingPile/info.2024-08-15.log deleted file mode 100644 index 307b855..0000000 --- a/logs/ruoyi-chargingPile/info.2024-08-15.log +++ /dev/null @@ -1,241 +0,0 @@ -11:10:54.894 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:10:56.041 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 94986e87-a484-4248-b95e-af396cdd60d6_config-0 -11:10:56.104 [main] INFO o.r.Reflections - [scan,232] - Reflections took 34 ms to scan 1 urls, producing 3 keys and 6 values -11:10:56.137 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -11:10:56.152 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values -11:10:56.355 [main] INFO o.r.Reflections - [scan,232] - Reflections took 200 ms to scan 277 urls, producing 0 keys and 0 values -11:10:56.365 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -11:10:56.380 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -11:10:56.393 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -11:10:56.557 [main] INFO o.r.Reflections - [scan,232] - Reflections took 161 ms to scan 277 urls, producing 0 keys and 0 values -11:10:56.558 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:10:56.559 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/335466988 -11:10:56.559 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1640244246 -11:10:56.560 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:10:56.560 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:10:56.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:10:58.406 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691458406_192.168.110.80_54262 -11:10:58.407 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Notify connected event to listeners. -11:10:58.407 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:10:58.407 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [94986e87-a484-4248-b95e-af396cdd60d6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1246238504 -11:10:58.491 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:11:00.897 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -11:11:00.983 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -11:11:00.991 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -11:11:01.068 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2efc619b-25e7-44cf-8e66-68f127306462_config-0 -11:11:01.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:11:01.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/335466988 -11:11:01.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1640244246 -11:11:01.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:11:01.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:11:01.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:11:01.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691461276_192.168.110.80_54265 -11:11:01.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:11:01.194 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Notify connected event to listeners. -11:11:01.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2efc619b-25e7-44cf-8e66-68f127306462_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1246238504 -11:11:01.366 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -11:11:01.492 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -11:11:01.603 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 105559e2-8670-406e-87f1-ba348bbe6fe1 -11:11:01.603 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] RpcClient init label, labels = {module=naming, source=sdk} -11:11:01.605 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:11:01.605 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:11:01.605 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:11:01.606 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:11:01.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691461813_192.168.110.80_54268 -11:11:01.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:11:01.720 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Notify connected event to listeners. -11:11:01.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1246238504 -11:11:01.748 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -11:11:01.765 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -11:11:01.765 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -11:11:01.778 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -11:11:01.778 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -11:11:01.779 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -11:11:02.295 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Receive server push request, request = NotifySubscriberRequest, requestId = 14 -11:11:02.296 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [105559e2-8670-406e-87f1-ba348bbe6fe1] Ack server push request, request = NotifySubscriberRequest, requestId = 14 -11:11:02.426 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -11:11:02.426 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:11:02.426 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:11:02.801 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:11:02.987 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -11:11:03.169 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -11:11:05.071 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$3d8d2928] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -11:11:07.035 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -11:11:07.047 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -11:11:07.053 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -11:11:54.481 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:11:55.603 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0 -11:11:55.667 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -11:11:55.702 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -11:11:55.717 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -11:11:55.916 [main] INFO o.r.Reflections - [scan,232] - Reflections took 196 ms to scan 277 urls, producing 0 keys and 0 values -11:11:55.926 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -11:11:55.941 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values -11:11:55.957 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -11:11:56.125 [main] INFO o.r.Reflections - [scan,232] - Reflections took 166 ms to scan 277 urls, producing 0 keys and 0 values -11:11:56.128 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:11:56.129 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/746228466 -11:11:56.130 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/281049997 -11:11:56.131 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:11:56.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:11:56.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:11:57.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691517929_192.168.110.80_54339 -11:11:57.921 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Notify connected event to listeners. -11:11:57.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:11:57.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dc074f73-f45d-4ff2-beb1-4fcf583c5a58_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/457245448 -11:11:57.999 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:12:00.338 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -11:12:00.396 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -11:12:00.403 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -11:12:00.480 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0 -11:12:00.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:12:00.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/746228466 -11:12:00.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/281049997 -11:12:00.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:12:00.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:12:00.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:12:00.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691520687_192.168.110.80_54342 -11:12:00.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:12:00.593 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Notify connected event to listeners. -11:12:00.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1aac95a2-ba37-4284-9d3f-69b39023f66f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/457245448 -11:12:00.700 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -11:12:00.779 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -11:12:00.885 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c83962a4-3b9e-4608-af11-4a0d4e3f9247 -11:12:00.886 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] RpcClient init label, labels = {module=naming, source=sdk} -11:12:00.888 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:12:00.888 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:12:00.889 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:12:00.889 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:12:01.015 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691521095_192.168.110.80_54345 -11:12:01.015 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:12:01.015 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Notify connected event to listeners. -11:12:01.015 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/457245448 -11:12:01.042 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -11:12:01.057 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -11:12:01.057 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -11:12:01.065 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -11:12:01.065 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -11:12:01.065 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -11:12:01.594 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Receive server push request, request = NotifySubscriberRequest, requestId = 15 -11:12:01.595 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c83962a4-3b9e-4608-af11-4a0d4e3f9247] Ack server push request, request = NotifySubscriberRequest, requestId = 15 -11:12:01.747 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -11:12:01.747 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:12:01.748 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:12:02.085 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:12:02.271 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -11:12:02.437 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -11:12:04.242 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$78d74299] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -11:12:07.047 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:12:09.958 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a875ed4b-f96f-4431-85da-0e5606a126ac -11:12:09.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] RpcClient init label, labels = {module=naming, source=sdk} -11:12:09.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:12:09.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:12:09.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:12:09.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:12:10.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691530164_192.168.110.80_54362 -11:12:10.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:12:10.069 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Notify connected event to listeners. -11:12:10.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/457245448 -11:12:10.078 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -11:12:10.101 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.110.80:9300 register finished -11:12:10.584 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Receive server push request, request = NotifySubscriberRequest, requestId = 16 -11:12:10.589 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a875ed4b-f96f-4431-85da-0e5606a126ac] Ack server push request, request = NotifySubscriberRequest, requestId = 16 -11:12:11.380 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 17.979 seconds (JVM running for 19.403) -11:12:11.388 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -11:12:11.390 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -11:12:11.391 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -11:13:17.270 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:26:28.965 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:26:30.136 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c88f4250-3421-4e9c-9bc5-db1646154144_config-0 -17:26:30.199 [main] INFO o.r.Reflections - [scan,232] - Reflections took 34 ms to scan 1 urls, producing 3 keys and 6 values -17:26:30.233 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -17:26:30.249 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -17:26:30.454 [main] INFO o.r.Reflections - [scan,232] - Reflections took 202 ms to scan 277 urls, producing 0 keys and 0 values -17:26:30.464 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -17:26:30.480 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -17:26:30.493 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -17:26:30.668 [main] INFO o.r.Reflections - [scan,232] - Reflections took 172 ms to scan 277 urls, producing 0 keys and 0 values -17:26:30.670 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:26:30.671 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/607578671 -17:26:30.671 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/261429887 -17:26:30.672 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:26:30.675 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:26:30.685 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:32.544 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723713992588_192.168.110.80_59638 -17:26:32.546 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Notify connected event to listeners. -17:26:32.546 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:32.547 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c88f4250-3421-4e9c-9bc5-db1646154144_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1214032527 -17:26:32.629 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:26:35.176 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:26:35.237 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:26:35.248 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -17:26:35.324 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 21fb891e-9b10-4395-bc00-a832050d2d5f_config-0 -17:26:35.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:26:35.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/607578671 -17:26:35.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/261429887 -17:26:35.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:26:35.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:26:35.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:35.448 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723713995575_192.168.110.80_59640 -17:26:35.448 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:35.448 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Notify connected event to listeners. -17:26:35.448 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [21fb891e-9b10-4395-bc00-a832050d2d5f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1214032527 -17:26:35.553 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:26:35.635 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:26:35.747 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6e65e8eb-f923-4c16-80fb-1915893b20a3 -17:26:35.747 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] RpcClient init label, labels = {module=naming, source=sdk} -17:26:35.749 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:26:35.749 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:26:35.749 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:26:35.750 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:35.868 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723713996000_192.168.110.80_59643 -17:26:35.868 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:35.868 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Notify connected event to listeners. -17:26:35.868 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1214032527 -17:26:35.893 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -17:26:35.911 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:26:35.913 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:26:35.923 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:26:35.924 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -17:26:35.924 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:26:36.431 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Receive server push request, request = NotifySubscriberRequest, requestId = 93 -17:26:36.432 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Ack server push request, request = NotifySubscriberRequest, requestId = 93 -17:26:36.638 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:26:36.638 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:26:36.638 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:26:36.963 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:26:37.159 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:26:37.328 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:26:39.198 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$8409752a] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -17:26:42.197 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:26:45.200 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 642d961a-e963-401b-87c8-0de2b082d232 -17:26:45.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] RpcClient init label, labels = {module=naming, source=sdk} -17:26:45.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:26:45.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:26:45.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:26:45.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:26:45.316 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723714005449_192.168.110.80_59659 -17:26:45.316 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:26:45.316 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Notify connected event to listeners. -17:26:45.316 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1214032527 -17:26:45.323 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -17:26:45.347 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.110.80:9300 register finished -17:26:45.883 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 95 -17:26:45.890 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 95 -17:26:46.686 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 18.821 seconds (JVM running for 20.284) -17:26:46.693 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -17:26:46.695 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -17:26:46.695 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -17:29:47.717 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:49:34.843 [nacos-grpc-client-executor-999] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Receive server push request, request = NotifySubscriberRequest, requestId = 100 -18:49:34.843 [nacos-grpc-client-executor-999] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e65e8eb-f923-4c16-80fb-1915893b20a3] Ack server push request, request = NotifySubscriberRequest, requestId = 100 -18:49:35.646 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -18:49:35.935 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -18:49:35.935 [timeoutChecker_2_1] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -18:49:35.940 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.80:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:49:35.944 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.80:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:49:36.409 [timeoutChecker_1_1] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x01a17a97, L:/192.168.110.80:60663 - R:/192.168.110.80:8091] -18:49:36.409 [timeoutChecker_2_1] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xf32039ea, L:/192.168.110.80:60662 - R:/192.168.110.80:8091] -18:49:36.417 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 126 ms, version:2.0.0,role:TMROLE,channel:[id: 0x01a17a97, L:/192.168.110.80:60663 - R:/192.168.110.80:8091] -18:49:36.417 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 126 ms, version:2.0.0,role:RMROLE,channel:[id: 0xf32039ea, L:/192.168.110.80:60662 - R:/192.168.110.80:8091] -18:52:33.480 [rpcDispatch_RMROLE_1_1_12] INFO i.s.c.r.p.c.RmUndoLogProcessor - [process,49] - rm handle undo log process:UndoLogDeleteRequest{resourceId='jdbc:mysql://192.168.110.169:8066/charging_pile_service', saveDays=7, branchType=AT} diff --git a/logs/ruoyi-chargingPile/info.2024-08-16.log b/logs/ruoyi-chargingPile/info.2024-08-16.log deleted file mode 100644 index 3bbd718..0000000 --- a/logs/ruoyi-chargingPile/info.2024-08-16.log +++ /dev/null @@ -1,120 +0,0 @@ -14:52:29.014 [nacos-grpc-client-executor-15403] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 123 -14:52:29.016 [nacos-grpc-client-executor-15403] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 123 -15:01:12.411 [nacos-grpc-client-executor-15508] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 126 -15:01:12.413 [nacos-grpc-client-executor-15508] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 126 -15:01:38.671 [nacos-grpc-client-executor-15514] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 130 -15:01:38.672 [nacos-grpc-client-executor-15514] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 130 -15:03:41.517 [nacos-grpc-client-executor-15539] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 133 -15:03:41.524 [nacos-grpc-client-executor-15539] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 133 -15:04:00.659 [nacos-grpc-client-executor-15544] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 137 -15:04:00.659 [nacos-grpc-client-executor-15544] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 137 -15:12:26.299 [nacos-grpc-client-executor-15645] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 140 -15:12:26.302 [nacos-grpc-client-executor-15645] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 140 -15:12:45.241 [nacos-grpc-client-executor-15649] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 143 -15:12:45.243 [nacos-grpc-client-executor-15649] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 143 -15:13:58.244 [nacos-grpc-client-executor-15664] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 147 -15:13:58.246 [nacos-grpc-client-executor-15664] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 147 -15:14:17.976 [nacos-grpc-client-executor-15669] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 151 -15:14:17.976 [nacos-grpc-client-executor-15669] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 151 -15:16:04.496 [nacos-grpc-client-executor-15690] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 154 -15:16:04.498 [nacos-grpc-client-executor-15690] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 154 -15:16:23.393 [nacos-grpc-client-executor-15694] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Receive server push request, request = NotifySubscriberRequest, requestId = 158 -15:16:23.394 [nacos-grpc-client-executor-15694] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [642d961a-e963-401b-87c8-0de2b082d232] Ack server push request, request = NotifySubscriberRequest, requestId = 158 -15:35:59.402 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:36:00.614 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0 -15:36:00.745 [main] INFO o.r.Reflections - [scan,232] - Reflections took 41 ms to scan 1 urls, producing 3 keys and 6 values -15:36:00.785 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values -15:36:00.801 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:36:01.029 [main] INFO o.r.Reflections - [scan,232] - Reflections took 224 ms to scan 277 urls, producing 0 keys and 0 values -15:36:01.039 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -15:36:01.056 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -15:36:01.072 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -15:36:01.241 [main] INFO o.r.Reflections - [scan,232] - Reflections took 166 ms to scan 277 urls, producing 0 keys and 0 values -15:36:01.244 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:36:01.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1273675500 -15:36:01.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/62182667 -15:36:01.246 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:36:01.247 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:36:01.258 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:36:03.139 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793763332_192.168.110.80_60890 -15:36:03.142 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Notify connected event to listeners. -15:36:03.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:36:03.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dd1ce0aa-4c9d-4beb-b98b-6ef1f12a3475_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/783117220 -15:36:03.238 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:36:05.990 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -15:36:06.084 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -15:36:06.097 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -15:36:06.181 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0 -15:36:06.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:36:06.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1273675500 -15:36:06.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/62182667 -15:36:06.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:36:06.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:36:06.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:36:06.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793766589_192.168.110.80_60893 -15:36:06.301 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Notify connected event to listeners. -15:36:06.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:36:06.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ad9af98-d873-437b-8ffe-67254d2a9ce4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/783117220 -15:36:06.428 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -15:36:06.538 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:36:06.649 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7 -15:36:06.649 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] RpcClient init label, labels = {module=naming, source=sdk} -15:36:06.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:36:06.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:36:06.654 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:36:06.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:36:06.783 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793767057_192.168.110.80_60896 -15:36:06.783 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:36:06.783 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Notify connected event to listeners. -15:36:06.783 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/783117220 -15:36:06.817 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:36:07.134 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.80:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -15:36:07.354 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Receive server push request, request = NotifySubscriberRequest, requestId = 160 -15:36:07.355 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a2bdb22b-c7a1-41e1-bcd2-8de07a963ab7] Ack server push request, request = NotifySubscriberRequest, requestId = 160 -15:36:07.836 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x6abd4b45, L:/192.168.110.80:60897 - R:/192.168.110.80:8091] -15:36:07.842 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 101 ms, version:2.0.0,role:TMROLE,channel:[id: 0x6abd4b45, L:/192.168.110.80:60897 - R:/192.168.110.80:8091] -15:36:07.844 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -15:36:07.865 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -15:36:07.865 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -15:36:07.877 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:36:07.878 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -15:36:07.878 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -15:36:08.700 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -15:36:08.701 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:36:08.701 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:36:08.881 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:36:09.078 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:36:09.242 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:36:09.313 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:36:09.313 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -15:36:09.314 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.80:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -15:36:09.328 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x74316581, L:/192.168.110.80:60901 - R:/192.168.110.80:8091] -15:36:09.328 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 12 ms, version:2.0.0,role:RMROLE,channel:[id: 0x74316581, L:/192.168.110.80:60901 - R:/192.168.110.80:8091] -15:36:10.875 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$cae8a4b2] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -15:36:13.866 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:36:16.818 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 701ed357-6c6c-487f-9665-6c986b01efda -15:36:16.819 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] RpcClient init label, labels = {module=naming, source=sdk} -15:36:16.821 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:36:16.821 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:36:16.821 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:36:16.822 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:36:16.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793777223_192.168.110.80_60914 -15:36:16.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:36:16.942 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/783117220 -15:36:16.945 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Notify connected event to listeners. -15:36:16.949 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -15:36:16.972 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.110.80:9300 register finished -15:36:17.514 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Receive server push request, request = NotifySubscriberRequest, requestId = 161 -15:36:17.516 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Ack server push request, request = NotifySubscriberRequest, requestId = 161 -15:36:18.329 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 20.133 seconds (JVM running for 21.676) -15:36:18.336 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -15:36:18.338 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -15:36:18.338 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -15:38:08.380 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:38:10.445 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Receive server push request, request = NotifySubscriberRequest, requestId = 168 -15:38:10.445 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Ack server push request, request = NotifySubscriberRequest, requestId = 168 -15:38:26.462 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Receive server push request, request = NotifySubscriberRequest, requestId = 169 -15:38:26.464 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Ack server push request, request = NotifySubscriberRequest, requestId = 169 -15:38:47.999 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Receive server push request, request = NotifySubscriberRequest, requestId = 172 -15:38:48.003 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [701ed357-6c6c-487f-9665-6c986b01efda] Ack server push request, request = NotifySubscriberRequest, requestId = 172 -18:52:33.485 [rpcDispatch_RMROLE_1_1_12] INFO i.s.c.r.p.c.RmUndoLogProcessor - [process,49] - rm handle undo log process:UndoLogDeleteRequest{resourceId='jdbc:mysql://192.168.110.169:8066/charging_pile_service', saveDays=7, branchType=AT} diff --git a/logs/ruoyi-chargingPile/info.log b/logs/ruoyi-chargingPile/info.log deleted file mode 100644 index 9c883b5..0000000 --- a/logs/ruoyi-chargingPile/info.log +++ /dev/null @@ -1,699 +0,0 @@ -16:37:40.921 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:37:45.881 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0099807e-65b9-4a33-8730-b13850e53757_config-0 -16:37:46.597 [main] INFO o.r.Reflections - [scan,232] - Reflections took 666 ms to scan 1 urls, producing 3 keys and 6 values -16:37:46.757 [main] INFO o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 4 keys and 9 values -16:37:46.827 [main] INFO o.r.Reflections - [scan,232] - Reflections took 40 ms to scan 1 urls, producing 3 keys and 10 values -16:37:47.830 [main] INFO o.r.Reflections - [scan,232] - Reflections took 996 ms to scan 276 urls, producing 0 keys and 0 values -16:37:47.853 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 5 values -16:37:47.880 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 7 values -16:37:47.937 [main] INFO o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 2 keys and 8 values -16:37:48.382 [main] INFO o.r.Reflections - [scan,232] - Reflections took 440 ms to scan 276 urls, producing 0 keys and 0 values -16:37:48.384 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:37:48.385 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1887991591 -16:37:48.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1457157255 -16:37:48.391 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:37:48.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:37:48.432 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:37:52.549 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538272875_192.168.110.85_59299 -16:37:52.551 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Notify connected event to listeners. -16:37:52.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:37:52.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0099807e-65b9-4a33-8730-b13850e53757_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/118887511 -16:37:52.676 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:37:57.350 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -16:37:57.472 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -16:37:57.509 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -16:37:57.583 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0 -16:37:57.583 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:37:57.583 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1887991591 -16:37:57.584 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1457157255 -16:37:57.584 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:37:57.584 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:37:57.585 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:37:57.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538278170_192.168.110.85_59301 -16:37:57.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:37:57.717 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Notify connected event to listeners. -16:37:57.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da7a3df9-08ba-4d87-b873-871a5aa5b299_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/118887511 -16:37:58.040 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -16:37:58.169 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -16:37:58.291 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8ce62d59-b0df-4d5c-b8c2-f21a522a4565 -16:37:58.292 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] RpcClient init label, labels = {module=naming, source=sdk} -16:37:58.296 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:37:58.296 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:37:58.296 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:37:58.297 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:37:58.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538278878_192.168.110.85_59304 -16:37:58.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:37:58.414 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Notify connected event to listeners. -16:37:58.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/118887511 -16:37:58.460 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -16:37:58.978 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -16:37:59.000 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Receive server push request, request = NotifySubscriberRequest, requestId = 190 -16:37:59.001 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8ce62d59-b0df-4d5c-b8c2-f21a522a4565] Ack server push request, request = NotifySubscriberRequest, requestId = 190 -16:38:00.378 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x49e6de0f, L:/192.168.204.1:59306 - R:/192.168.204.1:8091] -16:38:00.388 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 203 ms, version:2.0.0,role:TMROLE,channel:[id: 0x49e6de0f, L:/192.168.204.1:59306 - R:/192.168.204.1:8091] -16:38:00.390 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -16:38:00.430 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -16:38:00.431 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -16:38:00.447 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -16:38:00.447 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -16:38:00.447 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -16:38:02.155 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:38:02.156 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:38:02.156 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:38:02.437 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:38:02.808 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:38:03.174 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:38:03.290 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -16:38:03.291 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -16:38:03.293 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -16:38:03.307 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xae766323, L:/192.168.204.1:59311 - R:/192.168.204.1:8091] -16:38:03.308 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 12 ms, version:2.0.0,role:RMROLE,channel:[id: 0xae766323, L:/192.168.204.1:59311 - R:/192.168.204.1:8091] -16:38:06.491 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$5c1cb6ef] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -16:38:12.406 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:38:12.421 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:38:12.424 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x49e6de0f, L:/192.168.204.1:59306 ! R:/192.168.204.1:8091] -16:38:12.425 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x49e6de0f, L:/192.168.204.1:59306 ! R:/192.168.204.1:8091] -16:38:12.425 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x49e6de0f, L:/192.168.204.1:59306 ! R:/192.168.204.1:8091] -16:38:12.427 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x49e6de0f, L:/192.168.204.1:59306 ! R:/192.168.204.1:8091] -16:38:12.428 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xae766323, L:/192.168.204.1:59311 ! R:/192.168.204.1:8091] -16:38:12.428 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x49e6de0f, L:/192.168.204.1:59306 ! R:/192.168.204.1:8091]) will closed -16:38:12.428 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xae766323, L:/192.168.204.1:59311 ! R:/192.168.204.1:8091] -16:38:12.429 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xae766323, L:/192.168.204.1:59311 ! R:/192.168.204.1:8091] -16:38:12.429 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x49e6de0f, L:/192.168.204.1:59306 ! R:/192.168.204.1:8091]) will closed -16:38:12.429 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xae766323, L:/192.168.204.1:59311 ! R:/192.168.204.1:8091] -16:38:12.429 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xae766323, L:/192.168.204.1:59311 ! R:/192.168.204.1:8091]) will closed -16:38:12.429 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xae766323, L:/192.168.204.1:59311 ! R:/192.168.204.1:8091]) will closed -16:38:12.434 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:42:22.973 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:42:27.565 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e05ebbd7-463d-4430-baa8-e474c179aed0_config-0 -16:42:27.829 [main] INFO o.r.Reflections - [scan,232] - Reflections took 220 ms to scan 1 urls, producing 3 keys and 6 values -16:42:27.996 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values -16:42:28.037 [main] INFO o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 3 keys and 10 values -16:42:28.643 [main] INFO o.r.Reflections - [scan,232] - Reflections took 592 ms to scan 276 urls, producing 0 keys and 0 values -16:42:28.683 [main] INFO o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 1 keys and 5 values -16:42:28.701 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -16:42:28.862 [main] INFO o.r.Reflections - [scan,232] - Reflections took 155 ms to scan 1 urls, producing 2 keys and 8 values -16:42:29.665 [main] INFO o.r.Reflections - [scan,232] - Reflections took 686 ms to scan 276 urls, producing 0 keys and 0 values -16:42:29.669 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:42:29.670 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2144496344 -16:42:29.671 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/412375354 -16:42:29.672 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:42:29.674 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:42:29.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:42:33.203 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538553526_192.168.110.85_59464 -16:42:33.204 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Notify connected event to listeners. -16:42:33.206 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:42:33.207 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e05ebbd7-463d-4430-baa8-e474c179aed0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1404150776 -16:42:33.353 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:42:36.916 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -16:42:37.009 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -16:42:37.021 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -16:42:37.094 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 90d2f69b-8229-41a1-83f4-086c9e49e200_config-0 -16:42:37.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:42:37.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2144496344 -16:42:37.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/412375354 -16:42:37.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:42:37.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:42:37.096 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:42:37.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538557680_192.168.110.85_59468 -16:42:37.223 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Notify connected event to listeners. -16:42:37.223 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:42:37.224 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [90d2f69b-8229-41a1-83f4-086c9e49e200_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1404150776 -16:42:37.398 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -16:42:37.557 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -16:42:37.687 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e -16:42:37.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] RpcClient init label, labels = {module=naming, source=sdk} -16:42:37.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:42:37.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:42:37.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:42:37.692 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:42:37.816 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538558274_192.168.110.85_59473 -16:42:37.817 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Notify connected event to listeners. -16:42:37.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:42:37.818 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1404150776 -16:42:37.876 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -16:42:38.402 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Receive server push request, request = NotifySubscriberRequest, requestId = 192 -16:42:38.403 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -16:42:38.403 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6da7afe1-4a2b-45a4-b636-a3d0d6e4d50e] Ack server push request, request = NotifySubscriberRequest, requestId = 192 -16:42:39.493 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xabb6e286, L:/192.168.204.1:59475 - R:/192.168.204.1:8091] -16:42:39.502 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 88 ms, version:2.0.0,role:TMROLE,channel:[id: 0xabb6e286, L:/192.168.204.1:59475 - R:/192.168.204.1:8091] -16:42:39.504 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -16:42:39.527 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -16:42:39.528 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -16:42:39.567 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -16:42:39.567 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -16:42:39.568 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -16:42:40.727 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:42:40.727 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:42:40.728 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:42:41.000 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:42:41.278 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:42:41.522 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:42:41.607 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -16:42:41.608 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -16:42:41.609 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -16:42:41.619 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xdfb7fe0f, L:/192.168.204.1:59482 - R:/192.168.204.1:8091] -16:42:41.621 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 8 ms, version:2.0.0,role:RMROLE,channel:[id: 0xdfb7fe0f, L:/192.168.204.1:59482 - R:/192.168.204.1:8091] -16:42:43.970 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$6d03717e] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -16:42:47.351 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:42:47.366 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:42:47.370 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xabb6e286, L:/192.168.204.1:59475 ! R:/192.168.204.1:8091] -16:42:47.370 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xabb6e286, L:/192.168.204.1:59475 ! R:/192.168.204.1:8091] -16:42:47.371 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xabb6e286, L:/192.168.204.1:59475 ! R:/192.168.204.1:8091] -16:42:47.374 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xabb6e286, L:/192.168.204.1:59475 ! R:/192.168.204.1:8091] -16:42:47.375 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xabb6e286, L:/192.168.204.1:59475 ! R:/192.168.204.1:8091]) will closed -16:42:47.375 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xabb6e286, L:/192.168.204.1:59475 ! R:/192.168.204.1:8091]) will closed -16:42:47.376 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xdfb7fe0f, L:/192.168.204.1:59482 ! R:/192.168.204.1:8091] -16:42:47.378 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xdfb7fe0f, L:/192.168.204.1:59482 ! R:/192.168.204.1:8091] -16:42:47.378 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xdfb7fe0f, L:/192.168.204.1:59482 ! R:/192.168.204.1:8091] -16:42:47.382 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xdfb7fe0f, L:/192.168.204.1:59482 ! R:/192.168.204.1:8091] -16:42:47.382 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdfb7fe0f, L:/192.168.204.1:59482 ! R:/192.168.204.1:8091]) will closed -16:42:47.382 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdfb7fe0f, L:/192.168.204.1:59482 ! R:/192.168.204.1:8091]) will closed -16:42:47.385 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:44:32.742 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:44:34.862 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a1302c70-04ee-44be-b3f4-03f20a964042_config-0 -16:44:34.956 [main] INFO o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values -16:44:35.008 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -16:44:35.033 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values -16:44:35.340 [main] INFO o.r.Reflections - [scan,232] - Reflections took 299 ms to scan 276 urls, producing 0 keys and 0 values -16:44:35.355 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -16:44:35.378 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -16:44:35.398 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -16:44:35.645 [main] INFO o.r.Reflections - [scan,232] - Reflections took 242 ms to scan 276 urls, producing 0 keys and 0 values -16:44:35.647 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:44:35.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1055300312 -16:44:35.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/258447256 -16:44:35.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:44:35.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:44:35.668 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:44:38.483 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538678820_192.168.110.85_59615 -16:44:38.484 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Notify connected event to listeners. -16:44:38.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:44:38.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a1302c70-04ee-44be-b3f4-03f20a964042_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1239728853 -16:44:38.643 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:44:42.141 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -16:44:42.228 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -16:44:42.241 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -16:44:42.353 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0 -16:44:42.353 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:44:42.354 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1055300312 -16:44:42.354 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/258447256 -16:44:42.354 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:44:42.355 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:44:42.355 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:44:42.485 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538682942_192.168.110.85_59619 -16:44:42.485 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Notify connected event to listeners. -16:44:42.485 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:44:42.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [657067b0-c9f8-491b-a242-0c4b059cdb3c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1239728853 -16:44:42.686 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -16:44:42.804 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -16:44:42.933 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 343601c6-9722-404c-aa0a-026af4971273 -16:44:42.935 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] RpcClient init label, labels = {module=naming, source=sdk} -16:44:42.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:44:42.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:44:42.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:44:42.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:44:43.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538683526_192.168.110.85_59622 -16:44:43.069 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Notify connected event to listeners. -16:44:43.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:44:43.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1239728853 -16:44:43.113 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -16:44:43.614 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Receive server push request, request = NotifySubscriberRequest, requestId = 193 -16:44:43.615 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [343601c6-9722-404c-aa0a-026af4971273] Ack server push request, request = NotifySubscriberRequest, requestId = 193 -16:44:43.617 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -16:44:44.699 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xc1c778dd, L:/192.168.204.1:59624 - R:/192.168.204.1:8091] -16:44:44.708 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 85 ms, version:2.0.0,role:TMROLE,channel:[id: 0xc1c778dd, L:/192.168.204.1:59624 - R:/192.168.204.1:8091] -16:44:44.709 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -16:44:44.738 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -16:44:44.739 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -16:44:44.751 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -16:44:44.751 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -16:44:44.752 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -16:44:45.916 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -16:44:45.917 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:44:45.917 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -16:44:46.193 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:44:46.471 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:44:46.718 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:44:46.821 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -16:44:46.821 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -16:44:46.822 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -16:44:46.832 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xea9a0f09, L:/192.168.204.1:59629 - R:/192.168.204.1:8091] -16:44:46.833 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 8 ms, version:2.0.0,role:RMROLE,channel:[id: 0xea9a0f09, L:/192.168.204.1:59629 - R:/192.168.204.1:8091] -16:44:49.159 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$fbbf78a1] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -16:44:53.696 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:44:58.676 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 10483de9-97eb-4a0e-9f6d-91ea9310662e -16:44:58.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] RpcClient init label, labels = {module=naming, source=sdk} -16:44:58.678 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:44:58.678 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:44:58.678 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:44:58.679 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:44:58.794 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538699261_192.168.110.85_59647 -16:44:58.794 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:44:58.794 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Notify connected event to listeners. -16:44:58.794 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1239728853 -16:44:58.811 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -16:44:58.876 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -16:44:59.334 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Receive server push request, request = NotifySubscriberRequest, requestId = 194 -16:44:59.338 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Ack server push request, request = NotifySubscriberRequest, requestId = 194 -16:45:00.894 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 30.186 seconds (JVM running for 34.142) -16:45:00.907 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -16:45:00.909 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -16:45:00.911 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -16:45:02.997 [RMI TCP Connection(5)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:59:16.175 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:59:16.179 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:59:16.840 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:59:16.840 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6e611838[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:59:16.840 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723538699261_192.168.110.85_59647 -16:59:16.847 [nacos-grpc-client-executor-176] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Receive server push request, request = NotifySubscriberRequest, requestId = 195 -16:59:16.890 [nacos-grpc-client-executor-176] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [10483de9-97eb-4a0e-9f6d-91ea9310662e] Ack server push request, request = NotifySubscriberRequest, requestId = 195 -16:59:16.891 [nacos-grpc-client-executor-176] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723538699261_192.168.110.85_59647]Ignore complete event,isRunning:false,isAbandon=false -16:59:16.896 [SpringContextShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@796d743[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 177] -16:59:17.145 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:59:17.162 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:59:17.164 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xc1c778dd, L:/192.168.204.1:59624 ! R:/192.168.204.1:8091] -16:59:17.165 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xc1c778dd, L:/192.168.204.1:59624 ! R:/192.168.204.1:8091] -16:59:17.165 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc1c778dd, L:/192.168.204.1:59624 ! R:/192.168.204.1:8091] -16:59:17.169 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc1c778dd, L:/192.168.204.1:59624 ! R:/192.168.204.1:8091] -16:59:17.170 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc1c778dd, L:/192.168.204.1:59624 ! R:/192.168.204.1:8091]) will closed -16:59:17.170 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc1c778dd, L:/192.168.204.1:59624 ! R:/192.168.204.1:8091]) will closed -16:59:17.171 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xea9a0f09, L:/192.168.204.1:59629 ! R:/192.168.204.1:8091] -16:59:17.171 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xea9a0f09, L:/192.168.204.1:59629 ! R:/192.168.204.1:8091] -16:59:17.171 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xea9a0f09, L:/192.168.204.1:59629 ! R:/192.168.204.1:8091] -16:59:17.204 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xea9a0f09, L:/192.168.204.1:59629 ! R:/192.168.204.1:8091] -16:59:17.204 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xea9a0f09, L:/192.168.204.1:59629 ! R:/192.168.204.1:8091]) will closed -17:09:05.906 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:09:07.725 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0 -17:09:07.823 [main] INFO o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values -17:09:07.873 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -17:09:07.899 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values -17:09:08.183 [main] INFO o.r.Reflections - [scan,232] - Reflections took 276 ms to scan 276 urls, producing 0 keys and 0 values -17:09:08.198 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:09:08.216 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -17:09:08.236 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -17:09:08.470 [main] INFO o.r.Reflections - [scan,232] - Reflections took 230 ms to scan 276 urls, producing 0 keys and 0 values -17:09:08.475 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:09:08.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/943219925 -17:09:08.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1037572328 -17:09:08.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:09:08.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:09:08.495 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:09:11.704 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540152045_192.168.110.85_60319 -17:09:11.705 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Notify connected event to listeners. -17:09:11.707 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:09:11.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1846435308 -17:09:11.846 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:09:15.376 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -17:09:15.468 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -17:09:15.501 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -17:09:15.591 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0a29331d-1df7-47e3-a467-d5176e0312ee_config-0 -17:09:15.592 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:09:15.592 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/943219925 -17:09:15.592 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1037572328 -17:09:15.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:09:15.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:09:15.594 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:09:15.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540156198_192.168.110.85_60320 -17:09:15.727 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:09:15.727 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Notify connected event to listeners. -17:09:15.728 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1846435308 -17:09:15.927 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -17:09:16.039 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:09:16.166 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c0acf456-9372-4d89-97a6-be52346dafa0 -17:09:16.167 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] RpcClient init label, labels = {module=naming, source=sdk} -17:09:16.169 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:09:16.170 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:09:16.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:09:16.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:09:16.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540156769_192.168.110.85_60323 -17:09:16.294 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Notify connected event to listeners. -17:09:16.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:09:16.295 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1846435308 -17:09:16.341 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -17:09:16.839 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -17:09:16.845 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Receive server push request, request = NotifySubscriberRequest, requestId = 198 -17:09:16.846 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Ack server push request, request = NotifySubscriberRequest, requestId = 198 -17:09:17.966 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xe8d20a31, L:/192.168.204.1:60324 - R:/192.168.204.1:8091] -17:09:17.975 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 83 ms, version:2.0.0,role:TMROLE,channel:[id: 0xe8d20a31, L:/192.168.204.1:60324 - R:/192.168.204.1:8091] -17:09:17.976 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -17:09:17.999 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -17:09:18.000 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -17:09:18.014 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -17:09:18.014 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -17:09:18.014 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -17:09:19.170 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -17:09:19.170 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:09:19.170 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:09:19.442 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:09:19.734 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:09:19.989 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:09:20.075 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -17:09:20.076 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -17:09:20.077 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -17:09:20.087 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 - R:/192.168.204.1:8091] -17:09:20.088 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:2.0.0,role:RMROLE,channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 - R:/192.168.204.1:8091] -17:09:22.398 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$c1ca2713] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -17:09:26.699 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:09:31.225 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cf8ad92b-f304-4981-be37-a1e2184257d1 -17:09:31.226 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] RpcClient init label, labels = {module=naming, source=sdk} -17:09:31.226 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:09:31.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:09:31.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:09:31.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:09:31.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540171821_192.168.110.85_60343 -17:09:31.350 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Notify connected event to listeners. -17:09:31.350 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:09:31.351 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1846435308 -17:09:31.361 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -17:09:31.396 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -17:09:31.929 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Receive server push request, request = NotifySubscriberRequest, requestId = 199 -17:09:31.932 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Ack server push request, request = NotifySubscriberRequest, requestId = 199 -17:09:33.369 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 29.205 seconds (JVM running for 31.169) -17:09:33.382 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -17:09:33.384 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -17:09:33.386 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -17:09:34.342 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:39:43.755 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Server healthy check fail, currentConnection = 1723540152045_192.168.110.85_60319 -17:39:43.757 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:43.762 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Server healthy check fail, currentConnection = 1723540156769_192.168.110.85_60323 -17:39:43.762 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:44.102 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Server healthy check fail, currentConnection = 1723540156198_192.168.110.85_60320 -17:39:44.103 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:47.561 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Server healthy check fail, currentConnection = 1723540171821_192.168.110.85_60343 -17:39:47.564 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:50.019 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:50.061 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:50.383 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:53.257 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:53.349 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:53.651 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:53.774 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:56.578 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:56.666 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:56.975 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:57.032 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.016 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.079 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.348 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.397 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:03.532 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:03.593 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:03.761 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:03.909 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:07.210 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:07.229 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:07.409 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:07.728 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.023 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.041 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.089 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.550 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:14.818 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:14.849 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:14.865 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:15.370 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:18.645 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:18.769 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:18.785 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:19.287 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:22.563 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:22.784 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:22.800 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:23.317 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:26.585 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:26.901 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:26.918 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:27.425 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:30.715 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:31.121 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:31.137 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:31.655 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:34.957 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:35.586 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:35.586 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:36.072 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:39.276 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:40.003 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:40.004 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:40.491 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:43.692 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:44.526 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:44.526 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:45.013 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:48.214 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:49.133 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:49.133 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:49.621 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:52.843 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:53.856 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:53.856 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:54.331 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:57.563 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:58.681 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:58.681 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:59.155 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:02.366 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:03.601 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:03.626 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:04.070 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:07.313 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:08.623 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:08.681 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:09.145 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:12.324 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:13.753 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:13.813 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:14.273 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:17.507 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:18.977 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:19.040 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:19.495 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:22.718 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:24.299 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:24.360 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:24.828 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:28.051 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:29.733 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:29.815 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:30.287 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:33.501 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:35.245 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:35.324 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:35.813 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:39.013 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:40.862 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:40.938 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:41.445 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:44.622 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:46.573 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:46.666 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:47.155 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:50.335 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:52.384 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:52.477 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:52.965 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:55.693 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116182_192.168.110.85_61519 -17:41:55.693 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723540156769_192.168.110.85_60323 -17:41:55.694 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723540156769_192.168.110.85_60323 -17:41:55.694 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Notify disconnected event to listeners -17:41:55.697 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Notify connected event to listeners. -17:41:55.993 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116477_192.168.110.85_61521 -17:41:55.994 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723540156198_192.168.110.85_60320 -17:41:55.994 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723540156198_192.168.110.85_60320 -17:41:55.995 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Notify disconnected event to listeners -17:41:55.995 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0a29331d-1df7-47e3-a467-d5176e0312ee_config-0] Notify connected event to listeners. -17:41:56.169 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:56.419 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116916_192.168.110.85_61518 -17:41:56.420 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723540152045_192.168.110.85_60319 -17:41:56.420 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723540152045_192.168.110.85_60319 -17:41:56.420 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Notify disconnected event to listeners -17:41:56.421 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe5d20d-bb90-4561-a2b8-4349f8ffa92f_config-0] Notify connected event to listeners. -17:41:58.679 [nacos-grpc-client-executor-401] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Receive server push request, request = NotifySubscriberRequest, requestId = 214 -17:41:58.679 [nacos-grpc-client-executor-401] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Ack server push request, request = NotifySubscriberRequest, requestId = 214 -17:41:59.206 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Success to connect a server [192.168.110.169:8848], connectionId = 1723542119691_192.168.110.85_61530 -17:41:59.209 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723540171821_192.168.110.85_60343 -17:41:59.210 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723540171821_192.168.110.85_60343 -17:41:59.211 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Notify disconnected event to listeners -17:41:59.212 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Notify connected event to listeners. -17:42:01.692 [nacos-grpc-client-executor-403] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Receive server push request, request = NotifySubscriberRequest, requestId = 215 -17:42:01.692 [nacos-grpc-client-executor-403] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cf8ad92b-f304-4981-be37-a1e2184257d1] Ack server push request, request = NotifySubscriberRequest, requestId = 215 -18:00:43.239 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 - R:/192.168.204.1:8091] -18:00:43.239 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xe8d20a31, L:/192.168.204.1:60324 - R:/192.168.204.1:8091] -18:00:43.240 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0xe8d20a31, L:/192.168.204.1:60324 - R:/192.168.204.1:8091] -18:00:43.240 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [exceptionCaught,480] - remove exception rm channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 - R:/192.168.204.1:8091] -18:00:43.243 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xe8d20a31, L:/192.168.204.1:60324 ! R:/192.168.204.1:8091] -18:00:43.243 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091] -18:00:43.244 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091] -18:00:43.244 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xe8d20a31, L:/192.168.204.1:60324 ! R:/192.168.204.1:8091] -18:00:43.244 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091] -18:00:43.244 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xe8d20a31, L:/192.168.204.1:60324 ! R:/192.168.204.1:8091] -18:00:43.244 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091]) will closed -18:00:43.244 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe8d20a31, L:/192.168.204.1:60324 ! R:/192.168.204.1:8091]) will closed -18:00:43.244 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091]) will closed -18:00:43.244 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xe8d20a31, L:/192.168.204.1:60324 ! R:/192.168.204.1:8091]) will closed -18:00:46.030 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:00:46.031 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:00:48.018 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:00:48.018 [timeoutChecker_2_1] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -18:00:48.019 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091] -18:00:48.021 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x5a5969a8, L:/192.168.204.1:60328 ! R:/192.168.204.1:8091] -18:00:48.022 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:00:48.051 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xdc55d3bd]) will closed -18:00:50.048 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x866a6f8e]) will closed -18:00:56.036 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:00:56.037 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:00:58.023 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:00:58.023 [timeoutChecker_2_1] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -18:00:58.024 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:00:58.055 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x4d1053ff]) will closed -18:01:00.044 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x14b1e876]) will closed -18:01:01.732 [nacos-grpc-client-executor-628] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Receive server push request, request = NotifySubscriberRequest, requestId = 216 -18:01:01.734 [nacos-grpc-client-executor-628] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Ack server push request, request = NotifySubscriberRequest, requestId = 216 -18:01:16.764 [nacos-grpc-client-executor-631] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Receive server push request, request = NotifySubscriberRequest, requestId = 217 -18:01:16.765 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO i.s.d.r.n.NacosRegistryServiceImpl - [lambda$lookup$6,184] - receive empty server list,cluster:default -18:01:16.766 [nacos-grpc-client-executor-631] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Ack server push request, request = NotifySubscriberRequest, requestId = 217 -18:05:03.156 [nacos-grpc-client-executor-676] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Receive server push request, request = NotifySubscriberRequest, requestId = 218 -18:05:03.158 [nacos-grpc-client-executor-676] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0acf456-9372-4d89-97a6-be52346dafa0] Ack server push request, request = NotifySubscriberRequest, requestId = 218 -18:05:06.039 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:05:06.039 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:05:06.154 [timeoutChecker_1_1] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x0e36ab4e, L:/192.168.204.1:62213 - R:/192.168.204.1:8091] -18:05:06.154 [timeoutChecker_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 113 ms, version:2.0.0,role:TMROLE,channel:[id: 0x0e36ab4e, L:/192.168.204.1:62213 - R:/192.168.204.1:8091] -18:05:08.016 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:05:08.016 [timeoutChecker_2_1] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -18:05:08.017 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:05:08.029 [timeoutChecker_2_1] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x2547b067, L:/192.168.204.1:62214 - R:/192.168.204.1:8091] -18:05:08.029 [timeoutChecker_2_1] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 11 ms, version:2.0.0,role:RMROLE,channel:[id: 0x2547b067, L:/192.168.204.1:62214 - R:/192.168.204.1:8091] -18:05:53.505 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -18:05:53.515 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -18:05:53.863 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -18:05:53.863 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@63de66bb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -18:05:53.863 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723542119691_192.168.110.85_61530 -18:05:53.874 [SpringContextShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1dd4eb3[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 687] -18:05:54.241 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -18:05:54.255 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -18:05:54.258 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x0e36ab4e, L:/192.168.204.1:62213 ! R:/192.168.204.1:8091] -18:05:54.258 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x0e36ab4e, L:/192.168.204.1:62213 ! R:/192.168.204.1:8091] -18:05:54.259 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x0e36ab4e, L:/192.168.204.1:62213 ! R:/192.168.204.1:8091] -18:05:54.259 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x0e36ab4e, L:/192.168.204.1:62213 ! R:/192.168.204.1:8091] -18:05:54.260 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0e36ab4e, L:/192.168.204.1:62213 ! R:/192.168.204.1:8091]) will closed -18:05:54.260 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x0e36ab4e, L:/192.168.204.1:62213 ! R:/192.168.204.1:8091]) will closed -18:05:54.261 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x2547b067, L:/192.168.204.1:62214 ! R:/192.168.204.1:8091] -18:05:54.262 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x2547b067, L:/192.168.204.1:62214 ! R:/192.168.204.1:8091] -18:05:54.262 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x2547b067, L:/192.168.204.1:62214 ! R:/192.168.204.1:8091] -18:05:54.262 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x2547b067, L:/192.168.204.1:62214 ! R:/192.168.204.1:8091] -18:05:54.262 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2547b067, L:/192.168.204.1:62214 ! R:/192.168.204.1:8091]) will closed -18:05:54.263 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x2547b067, L:/192.168.204.1:62214 ! R:/192.168.204.1:8091]) will closed -18:06:03.344 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:06:05.106 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0 -18:06:05.192 [main] INFO o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values -18:06:05.240 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -18:06:05.261 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -18:06:05.553 [main] INFO o.r.Reflections - [scan,232] - Reflections took 286 ms to scan 276 urls, producing 0 keys and 0 values -18:06:05.567 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -18:06:05.589 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -18:06:05.606 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -18:06:05.866 [main] INFO o.r.Reflections - [scan,232] - Reflections took 256 ms to scan 276 urls, producing 0 keys and 0 values -18:06:05.870 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:06:05.871 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2083969860 -18:06:05.872 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1707293586 -18:06:05.874 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:06:05.875 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:06:05.890 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:06:08.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543569067_192.168.110.85_62284 -18:06:08.692 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Notify connected event to listeners. -18:06:08.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:06:08.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [462c56a3-956d-44aa-9ad4-7cde0529b3a8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1784551034 -18:06:08.815 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:06:12.236 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -18:06:12.324 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -18:06:12.336 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -18:06:12.409 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0 -18:06:12.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:06:12.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2083969860 -18:06:12.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1707293586 -18:06:12.410 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:06:12.410 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:06:12.410 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:06:12.530 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543573036_192.168.110.85_62286 -18:06:12.530 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:06:12.530 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Notify connected event to listeners. -18:06:12.530 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0deac3f4-ac10-414f-9bbf-fbcdb6b0996d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1784551034 -18:06:12.694 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -18:06:12.837 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -18:06:12.951 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 59012b1d-101b-4a18-8dae-084aee77a082 -18:06:12.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] RpcClient init label, labels = {module=naming, source=sdk} -18:06:12.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:06:12.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:06:12.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:06:12.957 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:06:13.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543573582_192.168.110.85_62289 -18:06:13.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:06:13.083 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Notify connected event to listeners. -18:06:13.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1784551034 -18:06:13.148 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:06:13.619 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.204.1:8091,msg:< RegisterTMRequest{applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:06:13.708 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Receive server push request, request = NotifySubscriberRequest, requestId = 219 -18:06:13.709 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59012b1d-101b-4a18-8dae-084aee77a082] Ack server push request, request = NotifySubscriberRequest, requestId = 219 -18:06:14.679 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x9cf231e8, L:/192.168.204.1:62290 - R:/192.168.204.1:8091] -18:06:14.687 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 87 ms, version:2.0.0,role:TMROLE,channel:[id: 0x9cf231e8, L:/192.168.204.1:62290 - R:/192.168.204.1:8091] -18:06:14.688 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -18:06:14.712 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -18:06:14.713 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -18:06:14.728 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -18:06:14.728 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-chargingPile] txServiceGroup[seata_tx_group] -18:06:14.728 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -18:06:15.854 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] -18:06:15.855 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:06:15.855 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:06:16.125 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:06:16.398 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -18:06:16.633 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -18:06:16.719 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.204.1:8091 -18:06:16.719 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_service -18:06:16.721 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.204.1:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_service', applicationId='ruoyi-chargingPile', transactionServiceGroup='seata_tx_group'} > -18:06:16.731 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x822433a1, L:/192.168.204.1:62294 - R:/192.168.204.1:8091] -18:06:16.732 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 8 ms, version:2.0.0,role:RMROLE,channel:[id: 0x822433a1, L:/192.168.204.1:62294 - R:/192.168.204.1:8091] -18:06:19.023 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.chargingPile.service.impl.PartnerServiceImpl$$EnhancerBySpringCGLIB$$1c4fe4bb] with name [partnerServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -18:06:23.355 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:06:37.921 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ba13c974-4b7b-42b6-8258-dcee73aa90e7 -18:06:37.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] RpcClient init label, labels = {module=naming, source=sdk} -18:06:37.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:06:37.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:06:37.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:06:37.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:06:38.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543598584_192.168.110.85_62317 -18:06:38.234 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Notify connected event to listeners. -18:06:38.234 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:06:38.235 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1784551034 -18:06:38.285 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] -18:06:38.458 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-chargingPile 192.168.204.1:9300 register finished -18:06:38.953 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Receive server push request, request = NotifySubscriberRequest, requestId = 221 -18:06:38.956 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba13c974-4b7b-42b6-8258-dcee73aa90e7] Ack server push request, request = NotifySubscriberRequest, requestId = 221 -18:06:42.276 [main] INFO c.r.c.RuoYiChargingPileApplication - [logStarted,61] - Started RuoYiChargingPileApplication in 40.809 seconds (JVM running for 43.018) -18:06:42.301 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile, group=DEFAULT_GROUP -18:06:42.312 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile-dev.yml, group=DEFAULT_GROUP -18:06:42.315 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-chargingPile.yml, group=DEFAULT_GROUP -18:06:43.454 [RMI TCP Connection(8)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:08:01.773 [rpcDispatch_RMROLE_1_1_8] INFO i.s.c.r.p.c.RmUndoLogProcessor - [process,49] - rm handle undo log process:UndoLogDeleteRequest{resourceId='jdbc:mysql://192.168.110.169:8066/charging_pile_service', saveDays=7, branchType=AT} -18:49:22.417 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -18:49:22.428 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -18:49:22.922 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -18:49:22.923 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@64fa4d81[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -18:49:22.923 [SpringContextShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723543598584_192.168.110.85_62317 -18:49:22.951 [nacos-grpc-client-executor-520] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723543598584_192.168.110.85_62317]Ignore complete event,isRunning:false,isAbandon=false -18:49:22.956 [SpringContextShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@67b55199[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 521] -18:49:23.141 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -18:49:23.153 [SpringContextShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -18:49:23.155 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x9cf231e8, L:/192.168.204.1:62290 ! R:/192.168.204.1:8091] -18:49:23.156 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x9cf231e8, L:/192.168.204.1:62290 ! R:/192.168.204.1:8091] -18:49:23.156 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x9cf231e8, L:/192.168.204.1:62290 ! R:/192.168.204.1:8091] -18:49:23.162 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x9cf231e8, L:/192.168.204.1:62290 ! R:/192.168.204.1:8091] -18:49:23.163 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x822433a1, L:/192.168.204.1:62294 ! R:/192.168.204.1:8091] -18:49:23.163 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x822433a1, L:/192.168.204.1:62294 ! R:/192.168.204.1:8091] -18:49:23.163 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x822433a1, L:/192.168.204.1:62294 ! R:/192.168.204.1:8091] -18:49:23.163 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9cf231e8, L:/192.168.204.1:62290 ! R:/192.168.204.1:8091]) will closed -18:49:23.164 [NettyClientSelector_TMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x9cf231e8, L:/192.168.204.1:62290 ! R:/192.168.204.1:8091]) will closed -18:49:23.168 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x822433a1, L:/192.168.204.1:62294 ! R:/192.168.204.1:8091] -18:49:23.168 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x822433a1, L:/192.168.204.1:62294 ! R:/192.168.204.1:8091]) will closed -18:49:23.168 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x822433a1, L:/192.168.204.1:62294 ! R:/192.168.204.1:8091]) will closed diff --git a/logs/ruoyi-gateway/error.2024-08-05.log b/logs/ruoyi-gateway/error.2024-08-05.log deleted file mode 100644 index ad4d735..0000000 --- a/logs/ruoyi-gateway/error.2024-08-05.log +++ /dev/null @@ -1,1544 +0,0 @@ -20:10:18.713 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.readSource(NacosDataSource.java:141) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.readSource(NacosDataSource.java:42) - at com.alibaba.csp.sentinel.datasource.AbstractDataSource.loadConfig(AbstractDataSource.java:44) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.loadInitialConfig(NacosDataSource.java:115) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.<init>(NacosDataSource.java:110) - at com.alibaba.cloud.sentinel.datasource.factorybean.NacosDataSourceFactoryBean.getObject(NacosDataSourceFactoryBean.java:86) - at com.alibaba.cloud.sentinel.datasource.factorybean.NacosDataSourceFactoryBean.getObject(NacosDataSourceFactoryBean.java:34) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:169) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:101) - at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1898) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getObjectForBeanInstance(AbstractAutowireCapableBeanFactory.java:1284) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:345) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.registerBean(SentinelDataSourceHandler.java:209) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.lambda$afterSingletonsInstantiated$0(SentinelDataSourceHandler.java:93) - at java.util.TreeMap.forEach(TreeMap.java:1005) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.afterSingletonsInstantiated(SentinelDataSourceHandler.java:80) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:974) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:20.758 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.readSource(NacosDataSource.java:141) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.readSource(NacosDataSource.java:42) - at com.alibaba.csp.sentinel.datasource.AbstractDataSource.loadConfig(AbstractDataSource.java:44) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.loadInitialConfig(NacosDataSource.java:115) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.<init>(NacosDataSource.java:110) - at com.alibaba.cloud.sentinel.datasource.factorybean.NacosDataSourceFactoryBean.getObject(NacosDataSourceFactoryBean.java:86) - at com.alibaba.cloud.sentinel.datasource.factorybean.NacosDataSourceFactoryBean.getObject(NacosDataSourceFactoryBean.java:34) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:169) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:101) - at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1898) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getObjectForBeanInstance(AbstractAutowireCapableBeanFactory.java:1284) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:345) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.registerBean(SentinelDataSourceHandler.java:209) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.lambda$afterSingletonsInstantiated$0(SentinelDataSourceHandler.java:93) - at java.util.TreeMap.forEach(TreeMap.java:1005) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.afterSingletonsInstantiated(SentinelDataSourceHandler.java:80) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:974) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:22.785 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.readSource(NacosDataSource.java:141) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.readSource(NacosDataSource.java:42) - at com.alibaba.csp.sentinel.datasource.AbstractDataSource.loadConfig(AbstractDataSource.java:44) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.loadInitialConfig(NacosDataSource.java:115) - at com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource.<init>(NacosDataSource.java:110) - at com.alibaba.cloud.sentinel.datasource.factorybean.NacosDataSourceFactoryBean.getObject(NacosDataSourceFactoryBean.java:86) - at com.alibaba.cloud.sentinel.datasource.factorybean.NacosDataSourceFactoryBean.getObject(NacosDataSourceFactoryBean.java:34) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:169) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:101) - at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1898) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getObjectForBeanInstance(AbstractAutowireCapableBeanFactory.java:1284) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:345) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.registerBean(SentinelDataSourceHandler.java:209) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.lambda$afterSingletonsInstantiated$0(SentinelDataSourceHandler.java:93) - at java.util.TreeMap.forEach(TreeMap.java:1005) - at com.alibaba.cloud.sentinel.custom.SentinelDataSourceHandler.afterSingletonsInstantiated(SentinelDataSourceHandler.java:80) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:974) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:22.893 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bbf4d8e9c8349fa741b7ceed45eefa85, Client-RequestTS=1722859822789, exConfigInfo=true, notify=false, Timestamp=1722859822789}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:22.893 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bbf4d8e9c8349fa741b7ceed45eefa85, Client-RequestTS=1722859822789, exConfigInfo=true, Timestamp=1722859822789}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:23.003 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bbf4d8e9c8349fa741b7ceed45eefa85, Client-RequestTS=1722859822789, exConfigInfo=true, notify=false, Timestamp=1722859822789}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:23.004 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bbf4d8e9c8349fa741b7ceed45eefa85, Client-RequestTS=1722859822789, exConfigInfo=true, Timestamp=1722859822789}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:23.165 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bbf4d8e9c8349fa741b7ceed45eefa85, Client-RequestTS=1722859822789, exConfigInfo=true, Timestamp=1722859822789}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:23.165 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bbf4d8e9c8349fa741b7ceed45eefa85, Client-RequestTS=1722859822789, exConfigInfo=true, notify=false, Timestamp=1722859822789}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:24.831 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:26.974 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:28.981 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd28172877dc8117fbd99a9bf8fc2987, Client-RequestTS=1722859828825, exConfigInfo=true, Timestamp=1722859828825}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:29.097 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd28172877dc8117fbd99a9bf8fc2987, Client-RequestTS=1722859828825, exConfigInfo=true, Timestamp=1722859828825}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:29.211 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd28172877dc8117fbd99a9bf8fc2987, Client-RequestTS=1722859828825, exConfigInfo=true, Timestamp=1722859828825}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:29.320 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:31.679 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:32.337 [RMI TCP Connection(10)-192.168.110.85] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=896d7fbfabe1e59e26bbd31f7b1a62c1, Client-RequestTS=1722859832229, exConfigInfo=true, notify=false, Timestamp=1722859832229}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:32.448 [RMI TCP Connection(10)-192.168.110.85] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=896d7fbfabe1e59e26bbd31f7b1a62c1, Client-RequestTS=1722859832229, exConfigInfo=true, notify=false, Timestamp=1722859832229}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:32.558 [RMI TCP Connection(10)-192.168.110.85] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=896d7fbfabe1e59e26bbd31f7b1a62c1, Client-RequestTS=1722859832229, exConfigInfo=true, notify=false, Timestamp=1722859832229}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:34.106 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:34.463 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aca16250c6b4f5134033a68681d5d6c4, Client-RequestTS=1722859834347, exConfigInfo=true, Timestamp=1722859834349}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:34.573 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aca16250c6b4f5134033a68681d5d6c4, Client-RequestTS=1722859834347, exConfigInfo=true, Timestamp=1722859834349}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:34.682 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aca16250c6b4f5134033a68681d5d6c4, Client-RequestTS=1722859834347, exConfigInfo=true, Timestamp=1722859834349}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:36.649 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:39.284 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:39.848 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b20ec4d789b73b9579304d46cdab5847, Client-RequestTS=1722859839737, exConfigInfo=true, Timestamp=1722859839738}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:39.960 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b20ec4d789b73b9579304d46cdab5847, Client-RequestTS=1722859839737, exConfigInfo=true, Timestamp=1722859839738}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:40.073 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b20ec4d789b73b9579304d46cdab5847, Client-RequestTS=1722859839737, exConfigInfo=true, Timestamp=1722859839738}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:42.027 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:44.874 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:45.248 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=505dc4ac21e84dfe47b0cb29bec5529f, Client-RequestTS=1722859845139, exConfigInfo=true, Timestamp=1722859845139}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:45.359 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=505dc4ac21e84dfe47b0cb29bec5529f, Client-RequestTS=1722859845139, exConfigInfo=true, Timestamp=1722859845139}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:45.474 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=505dc4ac21e84dfe47b0cb29bec5529f, Client-RequestTS=1722859845139, exConfigInfo=true, Timestamp=1722859845139}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:47.829 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:50.650 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de4730e09a14c9b93d4a4e1c9b1c1cd2, Client-RequestTS=1722859850540, exConfigInfo=true, Timestamp=1722859850540}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:50.777 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de4730e09a14c9b93d4a4e1c9b1c1cd2, Client-RequestTS=1722859850540, exConfigInfo=true, Timestamp=1722859850540}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:50.874 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:50.887 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de4730e09a14c9b93d4a4e1c9b1c1cd2, Client-RequestTS=1722859850540, exConfigInfo=true, Timestamp=1722859850540}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:54.000 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:10:56.052 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=135c5b4566e6d6dc45908107683e06b0, Client-RequestTS=1722859855940, exConfigInfo=true, Timestamp=1722859855940}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:10:56.162 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=135c5b4566e6d6dc45908107683e06b0, Client-RequestTS=1722859855940, exConfigInfo=true, Timestamp=1722859855940}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:10:56.273 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=135c5b4566e6d6dc45908107683e06b0, Client-RequestTS=1722859855940, exConfigInfo=true, Timestamp=1722859855940}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:10:57.226 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:00.558 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:01.457 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2449fdbf75f8675bdd5cd486c588acfd, Client-RequestTS=1722859861341, exConfigInfo=true, Timestamp=1722859861341}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:01.741 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2449fdbf75f8675bdd5cd486c588acfd, Client-RequestTS=1722859861341, exConfigInfo=true, Timestamp=1722859861341}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:01.871 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2449fdbf75f8675bdd5cd486c588acfd, Client-RequestTS=1722859861341, exConfigInfo=true, Timestamp=1722859861341}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:04.040 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:07.059 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c2540b9b52efa4833a1906b4014ec72, Client-RequestTS=1722859866939, exConfigInfo=true, Timestamp=1722859866940}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:07.163 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c2540b9b52efa4833a1906b4014ec72, Client-RequestTS=1722859866939, exConfigInfo=true, Timestamp=1722859866940}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:07.275 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c2540b9b52efa4833a1906b4014ec72, Client-RequestTS=1722859866939, exConfigInfo=true, Timestamp=1722859866940}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:07.598 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:11.237 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:12.465 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1807304f35802e4aa32f1f111c526ed2, Client-RequestTS=1722859872353, exConfigInfo=true, Timestamp=1722859872353}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:12.575 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1807304f35802e4aa32f1f111c526ed2, Client-RequestTS=1722859872353, exConfigInfo=true, Timestamp=1722859872353}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:12.685 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1807304f35802e4aa32f1f111c526ed2, Client-RequestTS=1722859872353, exConfigInfo=true, Timestamp=1722859872353}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:14.971 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:17.860 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=32701ae95da5229a9dc04b48ab975033, Client-RequestTS=1722859877750, exConfigInfo=true, Timestamp=1722859877750}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:17.971 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=32701ae95da5229a9dc04b48ab975033, Client-RequestTS=1722859877750, exConfigInfo=true, Timestamp=1722859877750}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:18.082 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=32701ae95da5229a9dc04b48ab975033, Client-RequestTS=1722859877750, exConfigInfo=true, Timestamp=1722859877750}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:18.798 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:22.739 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:23.264 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=046dcaa26a4f8ed447575a65ef8915cb, Client-RequestTS=1722859883155, exConfigInfo=true, Timestamp=1722859883155}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:23.376 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=046dcaa26a4f8ed447575a65ef8915cb, Client-RequestTS=1722859883155, exConfigInfo=true, Timestamp=1722859883155}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:23.488 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=046dcaa26a4f8ed447575a65ef8915cb, Client-RequestTS=1722859883155, exConfigInfo=true, Timestamp=1722859883155}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:26.791 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:28.666 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa278181c448fb6917eceb968c3b1731, Client-RequestTS=1722859888555, exConfigInfo=true, Timestamp=1722859888555}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:28.777 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa278181c448fb6917eceb968c3b1731, Client-RequestTS=1722859888555, exConfigInfo=true, Timestamp=1722859888555}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:28.889 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa278181c448fb6917eceb968c3b1731, Client-RequestTS=1722859888555, exConfigInfo=true, Timestamp=1722859888555}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:30.971 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:34.077 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=afaa891c7b7606198055fdb229061ffd, Client-RequestTS=1722859893965, exConfigInfo=true, Timestamp=1722859893965}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:34.188 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=afaa891c7b7606198055fdb229061ffd, Client-RequestTS=1722859893965, exConfigInfo=true, Timestamp=1722859893965}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:34.288 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=afaa891c7b7606198055fdb229061ffd, Client-RequestTS=1722859893965, exConfigInfo=true, Timestamp=1722859893965}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:35.227 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:39.453 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3ff20053ee8f9ec581abcdfb7350c8, Client-RequestTS=1722859899343, exConfigInfo=true, Timestamp=1722859899343}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -20:11:39.564 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3ff20053ee8f9ec581abcdfb7350c8, Client-RequestTS=1722859899343, exConfigInfo=true, Timestamp=1722859899343}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -20:11:39.616 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:11:39.699 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3ff20053ee8f9ec581abcdfb7350c8, Client-RequestTS=1722859899343, exConfigInfo=true, Timestamp=1722859899343}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -20:11:44.061 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -20:14:27.229 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/,异常信息:404 NOT_FOUND -20:14:39.594 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/swagger-ui.html,异常信息:404 NOT_FOUND -20:15:01.224 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -20:15:20.542 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/swagger-ui.html,异常信息:404 NOT_FOUND -20:15:25.789 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/swagger,异常信息:404 NOT_FOUND -20:15:50.836 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/v2/api-docs,异常信息:404 NOT_FOUND -20:16:11.651 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -20:16:27.599 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/swagger-ui/doc.html,异常信息:404 NOT_FOUND -20:17:07.480 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -20:17:21.649 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -20:17:33.165 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -20:18:40.876 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -20:20:07.040 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/swagger-ui/doc.html,异常信息:404 NOT_FOUND -20:20:16.376 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/swagger/doc.html,异常信息:404 NOT_FOUND -20:20:20.998 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND diff --git a/logs/ruoyi-gateway/error.2024-08-07.log b/logs/ruoyi-gateway/error.2024-08-07.log deleted file mode 100644 index 8aa9a53..0000000 --- a/logs/ruoyi-gateway/error.2024-08-07.log +++ /dev/null @@ -1,117 +0,0 @@ -11:37:11.354 [boundedElastic-11] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -11:37:19.906 [boundedElastic-8] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/payment/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-payment" -11:37:28.288 [boundedElastic-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -11:37:29.355 [boundedElastic-5] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/system/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-system" -11:37:30.406 [boundedElastic-11] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -11:37:31.492 [boundedElastic-12] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/account/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-account" -11:40:12.478 [boundedElastic-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/account/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-account" -11:40:36.784 [reactor-http-nio-2] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,104] - [鉴权异常处理]请求路径:/chargingPile/t-parking-lot/getDetailById -11:44:36.270 [reactor-http-nio-2] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,104] - [鉴权异常处理]请求路径:/chargingPile/t-charging-gun/getDetailById -11:44:51.798 [nacos-grpc-client-executor-139] ERROR c.a.n.c.r.c.g.GrpcClient - [sendResponse,243] - [1723001930741_192.168.110.85_53771]Error to send ack response, ackId->62 -11:46:55.513 [nacos-grpc-client-executor-41] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723002324548_192.168.110.85_54032]Request stream onCompleted, switch server -11:46:55.517 [nacos-grpc-client-executor-17] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723002324151_192.168.110.85_54031]Request stream onCompleted, switch server -11:46:55.517 [nacos-grpc-client-executor-24] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723002312204_192.168.110.85_54028]Request stream onCompleted, switch server -11:47:02.104 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3998 milliseconds, 801100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70794b1d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] -11:47:02.112 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4000 milliseconds, 429100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f15898d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] -11:47:02.113 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3998 milliseconds, 110200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23177f04[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] -11:47:05.288 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4002 milliseconds, 106800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1b3a69a4[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] -11:47:05.293 [boundedElastic-7] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3998 milliseconds, 801100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70794b1d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:652) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3998 milliseconds, 801100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70794b1d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76) - ... 20 common frames omitted -11:47:02.113 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4003 milliseconds, 228500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30b862bf[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] -11:47:05.329 [boundedElastic-3] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3998 milliseconds, 110200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23177f04[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:652) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3998 milliseconds, 110200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23177f04[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fa54887, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@753ec3cd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@264984e7}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76) - ... 20 common frames omitted -11:47:05.768 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzAyMDMyNH0.i8c_CvFouWhgWgCQi3QsIx8vBJ3MGoVk5lbDUPPkGAE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -11:47:05.887 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzAyMDMyNH0.i8c_CvFouWhgWgCQi3QsIx8vBJ3MGoVk5lbDUPPkGAE, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -11:47:06.114 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzAyMDMyNH0.i8c_CvFouWhgWgCQi3QsIx8vBJ3MGoVk5lbDUPPkGAE, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -11:48:07.467 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8713 milliseconds, 34600 nanoseconds delay) but future completed as timeout expired -11:48:07.468 [boundedElastic-4] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8713 milliseconds, 34600 nanoseconds delay) but future completed as timeout expired - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:652) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8713 milliseconds, 34600 nanoseconds delay) but future completed as timeout expired - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:506) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76) - ... 20 common frames omitted -11:48:20.681 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权异常处理]请求路径:/chargingPile/t-charging-gun/add -11:48:49.982 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权异常处理]请求路径:/chargingPile/t-charging-gun/add -12:04:02.612 [reactor-http-nio-2] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,105] - [鉴权异常处理]请求路径:/chargingPile/t-charging-gun/add -12:05:17.069 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 363 milliseconds, 436500 nanoseconds delay) but future completed as timeout expired -12:05:18.075 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/t-charging-gun/add,异常信息:你的主机中的软件中止了一个已建立的连接。 diff --git a/logs/ruoyi-gateway/error.2024-08-15.log b/logs/ruoyi-gateway/error.2024-08-15.log deleted file mode 100644 index 360c37c..0000000 --- a/logs/ruoyi-gateway/error.2024-08-15.log +++ /dev/null @@ -1,121 +0,0 @@ -11:12:45.053 [boundedElastic-7] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -11:13:14.055 [boundedElastic-7] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -11:15:58.220 [boundedElastic-15] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -11:25:33.429 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/auth/login,异常信息:java.lang.NullPointerException -11:26:15.857 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/auth/login,异常信息:java.lang.NullPointerException -11:27:06.015 [reactor-http-nio-3] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:09:32.622 [reactor-http-nio-4] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:11:01.668 [reactor-http-nio-4] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:11:55.303 [reactor-http-nio-4] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:22:42.355 [reactor-http-nio-4] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:38:44.848 [nacos-grpc-client-executor-18] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723703832886_192.168.110.80_57341]Request stream onCompleted, switch server -14:38:44.847 [nacos-grpc-client-executor-25] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723703826070_192.168.110.80_57338]Request stream onCompleted, switch server -14:38:44.859 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:38:44.966 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:38:45.074 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:38:45.269 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:42:01.984 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:42:02.076 [nacos-grpc-client-executor-58] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723704043208_192.168.110.80_57442]Request stream onCompleted, switch server -14:42:02.076 [nacos-grpc-client-executor-16] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723704036108_192.168.110.80_57438]Request stream onCompleted, switch server -14:42:02.076 [nacos-grpc-client-executor-9] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723704042966_192.168.110.80_57441]Request stream onCompleted, switch server -14:42:02.088 [com.alibaba.nacos.client.naming.updater.3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.089 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.089 [com.alibaba.nacos.client.naming.updater.2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.092 [boundedElastic-13] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.092 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.092 [boundedElastic-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.092 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:42:02.194 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.194 [com.alibaba.nacos.client.naming.updater.3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.194 [com.alibaba.nacos.client.naming.updater.2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.194 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.194 [boundedElastic-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.194 [boundedElastic-13] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.194 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [boundedElastic-13] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [boundedElastic-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [com.alibaba.nacos.client.naming.updater.3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.302 [com.alibaba.nacos.client.naming.updater.2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.304 [boundedElastic-13] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -14:42:02.304 [boundedElastic-9] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -14:42:02.411 [com.alibaba.nacos.client.naming.updater.2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzcyMjA0M30.OPz0bUgS_lSMhIpHPEHBaAMofBb9Yq-ETpmP4zeViuo, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.411 [com.alibaba.nacos.client.naming.updater.3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzcyMjA0M30.OPz0bUgS_lSMhIpHPEHBaAMofBb9Yq-ETpmP4zeViuo, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.411 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzcyMjA0M30.OPz0bUgS_lSMhIpHPEHBaAMofBb9Yq-ETpmP4zeViuo, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -14:42:02.411 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzcyMjA0M30.OPz0bUgS_lSMhIpHPEHBaAMofBb9Yq-ETpmP4zeViuo, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -14:42:48.542 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:47:43.657 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:50:44.292 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:51:31.585 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:52:19.765 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:53:02.383 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:53:17.151 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:54:05.639 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -14:55:47.651 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/auth/login -17:28:38.731 [boundedElastic-137] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" diff --git a/logs/ruoyi-gateway/error.2024-08-16.log b/logs/ruoyi-gateway/error.2024-08-16.log deleted file mode 100644 index 6247bcb..0000000 --- a/logs/ruoyi-gateway/error.2024-08-16.log +++ /dev/null @@ -1,78 +0,0 @@ -14:06:04.938 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:08:30.942 [boundedElastic-1413] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -14:10:26.861 [boundedElastic-1382] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/integration/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-integration" -14:10:29.001 [boundedElastic-1424] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/payment/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-payment" -14:11:19.157 [boundedElastic-1426] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -14:11:24.976 [boundedElastic-1405] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -14:11:26.502 [boundedElastic-1418] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -14:11:28.130 [boundedElastic-1418] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/payment/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-payment" -14:11:30.517 [boundedElastic-1418] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/integration/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-integration" -14:12:20.398 [boundedElastic-1423] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/payment/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-payment" -14:12:22.558 [boundedElastic-1423] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/integration/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-integration" -14:25:11.902 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:26:48.389 [boundedElastic-1428] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/auth/login,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-auth" -14:26:52.079 [boundedElastic-1428] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/auth/login,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-auth" -14:30:31.294 [reactor-http-nio-6] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:36:46.413 [boundedElastic-1436] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -14:37:26.844 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -14:37:26.873 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -14:37:27.883 [boundedElastic-1450] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -14:37:43.960 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -14:37:43.977 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -14:37:49.598 [boundedElastic-1450] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -14:38:10.080 [boundedElastic-1444] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -14:38:11.367 [boundedElastic-1444] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -14:42:43.000 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:08.990 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:19.462 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:31.482 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:37.422 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:44.133 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:55.638 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:44:58.310 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:45:01.852 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:49:19.609 [boundedElastic-1458] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -14:49:37.565 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:50:31.001 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:53:00.910 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -14:53:01.554 [boundedElastic-1464] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -14:53:03.174 [boundedElastic-1464] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -14:53:04.242 [boundedElastic-1464] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -15:03:53.375 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -15:04:35.063 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -15:04:54.374 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -15:08:01.676 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -15:08:16.457 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -15:08:29.249 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -15:20:31.033 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-volume-production-rk/getSlvolumeVolumeProductionRkList,异常信息:404 NOT_FOUND -15:20:49.202 [reactor-http-nio-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-volume-production-rk/getSlvolumeVolumeProductionRkList,异常信息:404 NOT_FOUND -15:59:06.663 [boundedElastic-1545] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -15:59:08.905 [boundedElastic-1545] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -15:59:33.470 [boundedElastic-1536] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -16:00:00.382 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/integration/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-integration" -16:00:02.486 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/payment/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-payment" -16:00:04.070 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -16:00:17.154 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -16:00:18.518 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -16:00:19.590 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/schedule/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-job" -16:00:26.127 [boundedElastic-1538] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/file/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-file" -16:02:54.656 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/base/oss/upload,异常信息:404 NOT_FOUND -16:03:51.484 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/base/oss/upload,异常信息:404 NOT_FOUND -16:04:56.909 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/base/oss/upload,异常信息:404 NOT_FOUND -16:05:46.169 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/base/oss/upload,异常信息:404 NOT_FOUND -16:50:04.204 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc/index.html,异常信息:404 NOT_FOUND -16:50:04.296 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -16:50:15.272 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -16:50:15.356 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -16:51:11.900 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -16:51:15.301 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/doc.html,异常信息:404 NOT_FOUND -16:51:15.365 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -16:51:28.533 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/favicon.ico,异常信息:404 NOT_FOUND -16:58:50.355 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/integral/saveSet,异常信息:404 NOT_FOUND -16:59:30.719 [reactor-http-nio-1] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,106] - [鉴权异常处理]请求路径:/other/integral/saveSet -17:00:05.098 [reactor-http-nio-1] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/other/integral/saveSet -17:03:20.416 [reactor-http-nio-5] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/other/integral/saveSet -17:17:50.581 [reactor-http-nio-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/s/t-accounting-strategy/pageList,异常信息:404 NOT_FOUND -17:27:28.263 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -17:29:56.455 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND -17:35:49.529 [reactor-http-nio-1] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/management/sl-audit/getslAuditList,异常信息:404 NOT_FOUND diff --git a/logs/ruoyi-gateway/error.log b/logs/ruoyi-gateway/error.log deleted file mode 100644 index c2cdf3f..0000000 --- a/logs/ruoyi-gateway/error.log +++ /dev/null @@ -1,774 +0,0 @@ -13:49:31.200 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 470700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7eb200ce[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f81621c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b9499fe, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@74d6736}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:73) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:199) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:186) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:158) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:116) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:51) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47) - at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:95) - at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:604) - at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:306) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -13:55:06.589 [boundedElastic-11] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -13:56:32.403 [reactor-http-nio-2] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,105] - [鉴权异常处理]请求路径:/chargingPile/partner/delPartner/1 -14:09:23.777 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'authFilter': Unsatisfied dependency expressed through field 'parameter_signature'; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'boolean'; nested exception is java.lang.IllegalArgumentException: Invalid boolean value [ture] - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -Caused by: org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'boolean'; nested exception is java.lang.IllegalArgumentException: Invalid boolean value [ture] - at org.springframework.beans.TypeConverterSupport.convertIfNecessary(TypeConverterSupport.java:79) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1339) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 20 common frames omitted -Caused by: java.lang.IllegalArgumentException: Invalid boolean value [ture] - at org.springframework.beans.propertyeditors.CustomBooleanEditor.setAsText(CustomBooleanEditor.java:154) - at org.springframework.beans.TypeConverterDelegate.doConvertTextValue(TypeConverterDelegate.java:429) - at org.springframework.beans.TypeConverterDelegate.doConvertValue(TypeConverterDelegate.java:402) - at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:155) - at org.springframework.beans.TypeConverterSupport.convertIfNecessary(TypeConverterSupport.java:73) - ... 23 common frames omitted -14:10:14.104 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'authFilter': Unsatisfied dependency expressed through field 'parameter_signature'; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'boolean'; nested exception is java.lang.IllegalArgumentException: Invalid boolean value [ture] - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -Caused by: org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'boolean'; nested exception is java.lang.IllegalArgumentException: Invalid boolean value [ture] - at org.springframework.beans.TypeConverterSupport.convertIfNecessary(TypeConverterSupport.java:79) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1339) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 20 common frames omitted -Caused by: java.lang.IllegalArgumentException: Invalid boolean value [ture] - at org.springframework.beans.propertyeditors.CustomBooleanEditor.setAsText(CustomBooleanEditor.java:154) - at org.springframework.beans.TypeConverterDelegate.doConvertTextValue(TypeConverterDelegate.java:429) - at org.springframework.beans.TypeConverterDelegate.doConvertValue(TypeConverterDelegate.java:402) - at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:155) - at org.springframework.beans.TypeConverterSupport.convertIfNecessary(TypeConverterSupport.java:73) - ... 23 common frames omitted -14:11:57.546 [nacos-grpc-client-executor-31] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723183843767_192.168.110.85_62435]Request stream onCompleted, switch server -14:11:57.551 [nacos-grpc-client-executor-20] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723183831636_192.168.110.85_62425]Request stream onCompleted, switch server -14:11:57.553 [nacos-grpc-client-executor-12] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723183843379_192.168.110.85_62434]Request stream onCompleted, switch server -14:11:57.562 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:11:57.570 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5548 milliseconds, 262600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4736d3a6[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] -14:11:57.577 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5554 milliseconds, 806900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66f2891d[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] -14:11:57.579 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5537 milliseconds, 345100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3af07931[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] -14:11:57.582 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5539 milliseconds, 820500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ef4ce53[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] -14:11:57.584 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5527 milliseconds, 225200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2daf3c0[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] -14:11:57.594 [boundedElastic-3] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5539 milliseconds, 820500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ef4ce53[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:652) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5539 milliseconds, 820500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ef4ce53[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76) - ... 20 common frames omitted -14:11:57.596 [boundedElastic-4] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5537 milliseconds, 345100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3af07931[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:652) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5537 milliseconds, 345100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3af07931[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@74a4ce52, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@324d76ef, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@c1d89bb}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76) - ... 20 common frames omitted -14:11:57.760 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIwMTg0M30.aatr79aeZ8u0dbr7xZVwRoefkIQkBqRJ5_KT3vyDjZc, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -14:11:57.869 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIwMTg0M30.aatr79aeZ8u0dbr7xZVwRoefkIQkBqRJ5_KT3vyDjZc, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:12:34.695 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:12:45.477 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:12:47.001 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:13:06.923 [reactor-http-nio-2] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:15:00.937 [reactor-http-nio-3] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:16:11.404 [reactor-http-nio-4] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:20:04.039 [reactor-http-nio-1] ERROR c.r.g.f.XssFilter - [filter,80] - [鉴权签名异常处理]请求路径:/chargingPile/partner/addPartner -14:20:04.060 [nacos-grpc-client-executor-121] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723183918824_192.168.110.85_54780]Request stream onCompleted, switch server -14:20:04.070 [nacos-grpc-client-executor-150] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723183918832_192.168.110.85_54781]Request stream onCompleted, switch server -14:20:04.074 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:20:04.074 [boundedElastic-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:20:04.074 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:20:04.075 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR -Received Goaway -app_requested -14:20:04.239 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.244 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.245 [boundedElastic-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.245 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.245 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. -14:20:04.359 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.359 [boundedElastic-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.359 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.360 [boundedElastic-9] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -14:20:04.361 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.361 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -14:20:04.362 [boundedElastic-6] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:202) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:136) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:440) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:428) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 17 common frames omitted -14:20:04.491 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIwMTg0M30.aatr79aeZ8u0dbr7xZVwRoefkIQkBqRJ5_KT3vyDjZc, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -14:41:39.071 [nacos-grpc-client-executor-51] ERROR c.a.n.c.r.c.g.GrpcClient - [sendResponse,243] - [1723185604330_192.168.110.85_58840]Error to send ack response, ackId->134 -15:03:21.386 [reactor-http-nio-2] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,106] - [鉴权异常处理]请求路径:/chargingPile/partner/addPartner -15:03:52.352 [reactor-http-nio-3] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,106] - [鉴权异常处理]请求路径:/chargingPile/partner/addPartner -15:05:31.839 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,88] - [签名异常处理]请求路径:/chargingPile/partner/addPartner -17:18:27.275 [boundedElastic-3] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/code/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-gen" -17:18:47.972 [boundedElastic-4] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-chargingPile" -17:19:40.149 [boundedElastic-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/v2/api-docs,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for ruoyi-chargingPile" -17:27:29.408 [reactor-http-nio-3] ERROR c.r.g.f.AuthFilter - [unauthorizedResponse,106] - [鉴权异常处理]请求路径:/chargingPile/partner/delPartner/1 -17:29:14.470 [reactor-http-nio-2] ERROR c.r.g.f.SignFilter - [unauthorizedResponse,87] - [签名异常处理]请求路径:/chargingPile/partner/addPartner -17:30:09.946 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 192.168.110.169 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 93 milliseconds, 288100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2f894ad9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@41184371, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34585ac9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@76a805b7}}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:73) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:199) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:186) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:158) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:116) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:51) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47) - at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:95) - at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:604) - at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:306) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.gateway.RuoYiGatewayApplication.main(RuoYiGatewayApplication.java:17) -17:30:29.727 [boundedElastic-3] ERROR r.c.s.Schedulers - [error,324] - Scheduler worker in group main failed with an uncaught exception -java.lang.NoClassDefFoundError: com/ruoyi/gateway/filter/CacheRequestFilter$CacheRequestGatewayFilter - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:37) - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:20) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.loadGatewayFilters(RouteDefinitionRouteLocator.java:154) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.getFilters(RouteDefinitionRouteLocator.java:176) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.convertToRoute(RouteDefinitionRouteLocator.java:117) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:106) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.tryEmitScalar(FluxFlatMap.java:488) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:421) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.drain(FluxMergeSequential.java:432) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.innerComplete(FluxMergeSequential.java:328) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialInner.onComplete(FluxMergeSequential.java:584) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete(MonoFlatMapMany.java:260) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onSubscribeInner(MonoFlatMapMany.java:150) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onSubscribe(MonoFlatMapMany.java:245) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onNext(MonoFlatMapMany.java:195) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1839) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:160) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894) - at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1840) - at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete(MonoCollectList.java:129) - at org.springframework.cloud.commons.publisher.FluxFirstNonEmptyEmitting$FirstNonEmptyEmittingSubscriber.onComplete(FluxFirstNonEmptyEmitting.java:325) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onComplete(FluxSubscribeOn.java:166) - at reactor.core.publisher.Operators.complete(Operators.java:137) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:144) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.Flux.subscribe(Flux.java:8628) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:76) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:30:29.728 [boundedElastic-5] ERROR r.c.s.Schedulers - [error,324] - Scheduler worker in group main failed with an uncaught exception -java.lang.NoClassDefFoundError: com/ruoyi/gateway/filter/CacheRequestFilter$CacheRequestGatewayFilter - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:37) - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:20) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.loadGatewayFilters(RouteDefinitionRouteLocator.java:154) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.getFilters(RouteDefinitionRouteLocator.java:176) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.convertToRoute(RouteDefinitionRouteLocator.java:117) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:106) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.tryEmitScalar(FluxFlatMap.java:488) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:421) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.drain(FluxMergeSequential.java:432) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.innerComplete(FluxMergeSequential.java:328) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialInner.onComplete(FluxMergeSequential.java:584) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete(MonoFlatMapMany.java:260) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onSubscribeInner(MonoFlatMapMany.java:150) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onSubscribe(MonoFlatMapMany.java:245) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onNext(MonoFlatMapMany.java:195) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1839) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:160) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894) - at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1840) - at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete(MonoCollectList.java:129) - at org.springframework.cloud.commons.publisher.FluxFirstNonEmptyEmitting$FirstNonEmptyEmittingSubscriber.onComplete(FluxFirstNonEmptyEmitting.java:325) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onComplete(FluxSubscribeOn.java:166) - at reactor.core.publisher.FluxIterable$IterableSubscription.fastPath(FluxIterable.java:424) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:291) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.requestUpstream(FluxSubscribeOn.java:131) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onSubscribe(FluxSubscribeOn.java:124) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.Flux.subscribe(Flux.java:8628) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:76) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.lang.ClassNotFoundException: com.ruoyi.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter - at java.net.URLClassLoader.findClass(URLClassLoader.java:381) - at java.lang.ClassLoader.loadClass(ClassLoader.java:424) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) - at java.lang.ClassLoader.loadClass(ClassLoader.java:357) - ... 60 common frames omitted -17:30:32.700 [boundedElastic-2] ERROR r.c.s.Schedulers - [error,324] - Scheduler worker in group main failed with an uncaught exception -java.lang.NoClassDefFoundError: com/ruoyi/gateway/filter/CacheRequestFilter$CacheRequestGatewayFilter - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:37) - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:20) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.loadGatewayFilters(RouteDefinitionRouteLocator.java:154) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.getFilters(RouteDefinitionRouteLocator.java:176) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.convertToRoute(RouteDefinitionRouteLocator.java:117) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:106) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.tryEmitScalar(FluxFlatMap.java:488) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:421) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.drain(FluxMergeSequential.java:432) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.innerComplete(FluxMergeSequential.java:328) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialInner.onComplete(FluxMergeSequential.java:584) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete(MonoFlatMapMany.java:260) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onSubscribeInner(MonoFlatMapMany.java:150) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onSubscribe(MonoFlatMapMany.java:245) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onNext(MonoFlatMapMany.java:195) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1839) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:160) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894) - at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1840) - at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete(MonoCollectList.java:129) - at org.springframework.cloud.commons.publisher.FluxFirstNonEmptyEmitting$FirstNonEmptyEmittingSubscriber.onComplete(FluxFirstNonEmptyEmitting.java:325) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onComplete(FluxSubscribeOn.java:166) - at reactor.core.publisher.Operators.complete(Operators.java:137) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:144) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.Flux.subscribe(Flux.java:8628) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:76) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:30:32.705 [boundedElastic-4] ERROR r.c.s.Schedulers - [error,324] - Scheduler worker in group main failed with an uncaught exception -java.lang.NoClassDefFoundError: com/ruoyi/gateway/filter/CacheRequestFilter$CacheRequestGatewayFilter - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:37) - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:20) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.loadGatewayFilters(RouteDefinitionRouteLocator.java:154) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.getFilters(RouteDefinitionRouteLocator.java:176) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.convertToRoute(RouteDefinitionRouteLocator.java:117) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:106) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.tryEmitScalar(FluxFlatMap.java:488) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:421) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.drain(FluxMergeSequential.java:432) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.innerComplete(FluxMergeSequential.java:328) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialInner.onComplete(FluxMergeSequential.java:584) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete(MonoFlatMapMany.java:260) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onSubscribeInner(MonoFlatMapMany.java:150) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onSubscribe(MonoFlatMapMany.java:245) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onNext(MonoFlatMapMany.java:195) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1839) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:160) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894) - at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onComplete(FluxSubscribeOn.java:166) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.requestUpstream(FluxSubscribeOn.java:131) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onSubscribe(FluxSubscribeOn.java:124) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:76) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:54) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:30:32.740 [boundedElastic-6] ERROR r.c.s.Schedulers - [error,324] - Scheduler worker in group main failed with an uncaught exception -java.lang.NoClassDefFoundError: com/ruoyi/gateway/filter/CacheRequestFilter$CacheRequestGatewayFilter - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:37) - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:20) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.loadGatewayFilters(RouteDefinitionRouteLocator.java:154) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.getFilters(RouteDefinitionRouteLocator.java:176) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.convertToRoute(RouteDefinitionRouteLocator.java:117) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:106) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.tryEmitScalar(FluxFlatMap.java:488) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:421) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.drain(FluxMergeSequential.java:432) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.innerComplete(FluxMergeSequential.java:328) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialInner.onComplete(FluxMergeSequential.java:584) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete(MonoFlatMapMany.java:260) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onSubscribeInner(MonoFlatMapMany.java:150) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onSubscribe(MonoFlatMapMany.java:245) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onNext(MonoFlatMapMany.java:195) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1839) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:160) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894) - at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1840) - at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete(MonoCollectList.java:129) - at org.springframework.cloud.commons.publisher.FluxFirstNonEmptyEmitting$FirstNonEmptyEmittingSubscriber.onComplete(FluxFirstNonEmptyEmitting.java:325) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onComplete(FluxSubscribeOn.java:166) - at reactor.core.publisher.FluxIterable$IterableSubscription.fastPath(FluxIterable.java:424) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:291) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.requestUpstream(FluxSubscribeOn.java:131) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onSubscribe(FluxSubscribeOn.java:124) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.Flux.subscribe(Flux.java:8628) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:76) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:30:32.740 [boundedElastic-8] ERROR r.c.s.Schedulers - [error,324] - Scheduler worker in group main failed with an uncaught exception -java.lang.NoClassDefFoundError: com/ruoyi/gateway/filter/CacheRequestFilter$CacheRequestGatewayFilter - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:37) - at com.ruoyi.gateway.filter.CacheRequestFilter.apply(CacheRequestFilter.java:20) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.loadGatewayFilters(RouteDefinitionRouteLocator.java:154) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.getFilters(RouteDefinitionRouteLocator.java:176) - at org.springframework.cloud.gateway.route.RouteDefinitionRouteLocator.convertToRoute(RouteDefinitionRouteLocator.java:117) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:106) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.tryEmitScalar(FluxFlatMap.java:488) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onNext(FluxFlatMap.java:421) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.drain(FluxMergeSequential.java:432) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialMain.innerComplete(FluxMergeSequential.java:328) - at reactor.core.publisher.FluxMergeSequential$MergeSequentialInner.onComplete(FluxMergeSequential.java:584) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onComplete(MonoFlatMapMany.java:260) - at reactor.core.publisher.FluxIterable$IterableSubscription.slowPath(FluxIterable.java:357) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:294) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onSubscribeInner(MonoFlatMapMany.java:150) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyInner.onSubscribe(MonoFlatMapMany.java:245) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onNext(MonoFlatMapMany.java:195) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1839) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:160) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drain(FluxFlatMap.java:588) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.onComplete(FluxFlatMap.java:465) - at reactor.core.publisher.FluxFilter$FilterSubscriber.onComplete(FluxFilter.java:166) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.checkTerminated(FluxFlatMap.java:846) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.drainLoop(FluxFlatMap.java:608) - at reactor.core.publisher.FluxFlatMap$FlatMapMain.innerComplete(FluxFlatMap.java:894) - at reactor.core.publisher.FluxFlatMap$FlatMapInner.onComplete(FluxFlatMap.java:997) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1840) - at reactor.core.publisher.MonoCollectList$MonoCollectListSubscriber.onComplete(MonoCollectList.java:129) - at org.springframework.cloud.commons.publisher.FluxFirstNonEmptyEmitting$FirstNonEmptyEmittingSubscriber.onComplete(FluxFirstNonEmptyEmitting.java:325) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onComplete(FluxSubscribeOn.java:166) - at reactor.core.publisher.FluxIterable$IterableSubscription.fastPath(FluxIterable.java:424) - at reactor.core.publisher.FluxIterable$IterableSubscription.request(FluxIterable.java:291) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.requestUpstream(FluxSubscribeOn.java:131) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.onSubscribe(FluxSubscribeOn.java:124) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) - at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) - at reactor.core.publisher.Flux.subscribe(Flux.java:8642) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.Flux.subscribe(Flux.java:8628) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:200) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:76) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:30:33.312 [Nacos-Watch-Task-Scheduler-1] ERROR o.s.s.s.TaskUtils$LoggingErrorHandler - [handleError,95] - Unexpected error occurred in scheduled task -reactor.core.Exceptions$ReactiveException: java.lang.InterruptedException - at reactor.core.Exceptions.propagate(Exceptions.java:396) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:91) - at reactor.core.publisher.Flux.blockLast(Flux.java:2761) - at org.springframework.cloud.gateway.filter.WeightCalculatorWebFilter.lambda$onApplicationEvent$0(WeightCalculatorWebFilter.java:133) - at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.ifAvailable(DefaultListableBeanFactory.java:2046) - at org.springframework.cloud.gateway.filter.WeightCalculatorWebFilter.onApplicationEvent(WeightCalculatorWebFilter.java:133) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) - at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) - at org.springframework.cloud.gateway.route.RouteRefreshListener.resetIfNeeded(RouteRefreshListener.java:68) - at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:62) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) - at com.alibaba.cloud.nacos.discovery.NacosWatch.nacosServicesWatch(NacosWatch.java:197) - at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308) - at java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.lang.InterruptedException: null - at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly(AbstractQueuedSynchronizer.java:998) - at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1304) - at java.util.concurrent.CountDownLatch.await(CountDownLatch.java:231) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:87) - ... 27 common frames omitted -17:30:35.375 [RMI TCP Connection(4)-192.168.110.85] ERROR o.s.c.c.d.h.DiscoveryClientHealthIndicator - [health,82] - Error -org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'compositeDiscoveryClient': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:220) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.getIfAvailable(DefaultListableBeanFactory.java:2032) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:69) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:94) - at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:41) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:88) - at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:78) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:282) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:122) - at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:97) - at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819) - at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801) - at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1468) - at javax.management.remote.rmi.RMIConnectionImpl.access$300(RMIConnectionImpl.java:76) - at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1309) - at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1401) - at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:829) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:357) - at sun.rmi.transport.Transport$1.run(Transport.java:200) - at sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.security.AccessController.doPrivileged(Native Method) - at sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:568) - at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:826) - at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:683) - at java.security.AccessController.doPrivileged(Native Method) - at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:682) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -17:32:53.039 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException -17:34:35.933 [nacos-grpc-client-executor-26] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723195927620_192.168.110.85_50298]Request stream onCompleted, switch server -17:34:35.934 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19508 milliseconds, 537300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5439fe92[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b4f32c8, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@479987c8, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@768caa19}}}}}]] -17:34:35.926 [nacos-grpc-client-executor-34] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723195947130_192.168.110.85_50307]Request stream onCompleted, switch server -17:34:35.943 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException -17:34:35.933 [nacos-grpc-client-executor-18] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - [1723195946738_192.168.110.85_50305]Request stream onCompleted, switch server -17:34:35.936 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19505 milliseconds, 445600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@14f0d422[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b4f32c8, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@479987c8, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@768caa19}}}}}]] -17:34:35.942 [com.alibaba.nacos.client.naming.updater.1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8464 milliseconds, 445700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@79a75abd[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b4f32c8, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@479987c8, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@768caa19}}}}}]] -17:34:36.048 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIxMzk0N30.6qjrYXqVqDrDWmO0eJJU6Rf3eKNTAIUeHNMzGnTHqsQ, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:34:36.048 [boundedElastic-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIxMzk0N30.6qjrYXqVqDrDWmO0eJJU6Rf3eKNTAIUeHNMzGnTHqsQ, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:34:36.080 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIxMzk0N30.6qjrYXqVqDrDWmO0eJJU6Rf3eKNTAIUeHNMzGnTHqsQ, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -17:34:36.160 [boundedElastic-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIxMzk0N30.6qjrYXqVqDrDWmO0eJJU6Rf3eKNTAIUeHNMzGnTHqsQ, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:34:36.160 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIxMzk0N30.6qjrYXqVqDrDWmO0eJJU6Rf3eKNTAIUeHNMzGnTHqsQ, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:34:36.193 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyMzIxMzk0N30.6qjrYXqVqDrDWmO0eJJU6Rf3eKNTAIUeHNMzGnTHqsQ, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -17:34:53.925 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException -17:35:09.856 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException -17:36:23.781 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException -17:36:42.578 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException -17:37:07.099 [reactor-http-nio-2] ERROR c.r.g.h.GatewayExceptionHandler - [handle,52] - [网关异常处理]请求路径:/chargingPile/partner/addPartner,异常信息:java.lang.NullPointerException diff --git a/logs/ruoyi-gateway/info.2024-08-05.log b/logs/ruoyi-gateway/info.2024-08-05.log deleted file mode 100644 index 7035aea..0000000 --- a/logs/ruoyi-gateway/info.2024-08-05.log +++ /dev/null @@ -1,146 +0,0 @@ -20:09:56.205 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -20:09:58.381 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a5a00ca9-0271-4c27-8579-a9ea24132865_config-0 -20:09:58.464 [main] INFO o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values -20:09:58.513 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 4 keys and 9 values -20:09:58.532 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -20:09:58.821 [main] INFO o.r.Reflections - [scan,232] - Reflections took 285 ms to scan 234 urls, producing 0 keys and 0 values -20:09:58.848 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -20:09:58.864 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -20:09:58.881 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -20:09:59.080 [main] INFO o.r.Reflections - [scan,232] - Reflections took 195 ms to scan 234 urls, producing 0 keys and 0 values -20:09:59.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -20:09:59.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/634210724 -20:09:59.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1417126346 -20:09:59.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:09:59.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:09:59.103 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:10:02.384 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722859802373_192.168.110.85_59526 -20:10:02.385 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Notify connected event to listeners. -20:10:02.388 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:10:02.389 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a5a00ca9-0271-4c27-8579-a9ea24132865_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/2078470810 -20:10:02.506 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -20:10:12.895 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -20:10:13.960 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -20:10:16.668 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7b1b2bad-2335-4272-be42-1108db1fda4c_config-0 -20:10:16.668 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -20:10:16.668 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/634210724 -20:10:16.669 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1417126346 -20:10:16.669 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:10:16.669 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:10:16.670 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -20:10:18.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -20:10:20.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -20:10:22.788 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -20:10:22.788 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:10:22.788 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/2078470810 -20:10:24.143 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6ac15f0f-2994-449e-bc65-6ec2d7dfec74 -20:10:24.143 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] RpcClient init label, labels = {module=naming, source=sdk} -20:10:24.146 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:10:24.147 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:10:24.148 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:10:24.148 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:10:24.272 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722859824370_192.168.110.85_59540 -20:10:24.273 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:10:24.273 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Notify connected event to listeners. -20:10:24.273 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/2078470810 -20:10:24.847 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Receive server push request, request = NotifySubscriberRequest, requestId = 20 -20:10:24.848 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Ack server push request, request = NotifySubscriberRequest, requestId = 20 -20:10:26.975 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:28.225 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -20:10:28.269 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 34.095 seconds (JVM running for 45.253) -20:10:28.280 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -20:10:28.281 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -20:10:28.282 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -20:10:28.751 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Receive server push request, request = NotifySubscriberRequest, requestId = 21 -20:10:28.751 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ac15f0f-2994-449e-bc65-6ec2d7dfec74] Ack server push request, request = NotifySubscriberRequest, requestId = 21 -20:10:29.321 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:31.679 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:34.107 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:36.650 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:39.290 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:42.027 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:44.875 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:47.830 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:50.875 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:54.000 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:10:57.227 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:00.559 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:04.041 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:07.599 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:11.238 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:14.972 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:18.798 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:22.739 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:26.793 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:30.972 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:35.255 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:39.617 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:11:42.070 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -20:11:42.076 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -20:11:42.476 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -20:11:42.477 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@21cc46f2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:11:42.477 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1722859824370_192.168.110.85_59540 -20:11:42.478 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@57d489e7[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 40] -20:11:44.061 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b1b2bad-2335-4272-be42-1108db1fda4c_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -20:13:10.145 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -20:13:12.160 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0 -20:13:12.241 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -20:13:12.294 [main] INFO o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 4 keys and 9 values -20:13:12.312 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -20:13:12.640 [main] INFO o.r.Reflections - [scan,232] - Reflections took 323 ms to scan 234 urls, producing 0 keys and 0 values -20:13:12.654 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -20:13:12.675 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -20:13:12.692 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -20:13:12.929 [main] INFO o.r.Reflections - [scan,232] - Reflections took 232 ms to scan 234 urls, producing 0 keys and 0 values -20:13:12.934 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -20:13:12.935 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/57407566 -20:13:12.936 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/436949795 -20:13:12.937 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:13:12.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:13:12.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:13:16.203 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722859996182_192.168.110.85_59675 -20:13:16.206 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Notify connected event to listeners. -20:13:16.208 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:16.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f062f70c-3e13-43cf-a2af-bf3141094fbf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1879000767 -20:13:16.319 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -20:13:25.409 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -20:13:26.392 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -20:13:29.077 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0 -20:13:29.077 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -20:13:29.077 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/57407566 -20:13:29.077 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/436949795 -20:13:29.077 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:13:29.078 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:13:29.078 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:13:29.210 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722860009307_192.168.110.85_59682 -20:13:29.210 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Notify connected event to listeners. -20:13:29.211 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:29.211 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [875525f4-dfea-42bf-9313-d37e2e57ee3e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1879000767 -20:13:29.515 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6d952e9c-7e0d-4866-aae3-3c6e2b66586b -20:13:29.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] RpcClient init label, labels = {module=naming, source=sdk} -20:13:29.518 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:13:29.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:13:29.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:13:29.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -20:13:29.647 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1722860009747_192.168.110.85_59683 -20:13:29.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:29.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1879000767 -20:13:29.648 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Notify connected event to listeners. -20:13:30.250 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Receive server push request, request = NotifySubscriberRequest, requestId = 22 -20:13:30.250 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Ack server push request, request = NotifySubscriberRequest, requestId = 22 -20:13:33.069 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -20:13:33.147 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 24.88 seconds (JVM running for 34.545) -20:13:33.159 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -20:13:33.162 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -20:13:33.170 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -20:13:33.634 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Receive server push request, request = NotifySubscriberRequest, requestId = 23 -20:13:33.634 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Ack server push request, request = NotifySubscriberRequest, requestId = 23 -20:15:00.798 [nacos-grpc-client-executor-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Receive server push request, request = NotifySubscriberRequest, requestId = 25 -20:15:00.798 [nacos-grpc-client-executor-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6d952e9c-7e0d-4866-aae3-3c6e2b66586b] Ack server push request, request = NotifySubscriberRequest, requestId = 25 -20:22:45.313 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -20:22:45.318 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -20:22:45.657 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -20:22:45.658 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7e76859b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:45.658 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1722860009747_192.168.110.85_59683 -20:22:45.660 [nacos-grpc-client-executor-170] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1722860009747_192.168.110.85_59683]Ignore complete event,isRunning:false,isAbandon=false -20:22:45.663 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6bd94dba[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 171] diff --git a/logs/ruoyi-gateway/info.2024-08-07.log b/logs/ruoyi-gateway/info.2024-08-07.log deleted file mode 100644 index 5d1b4b8..0000000 --- a/logs/ruoyi-gateway/info.2024-08-07.log +++ /dev/null @@ -1,435 +0,0 @@ -11:25:08.017 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:25:10.828 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 62885774-80be-46c7-b59c-9fb300c772c6_config-0 -11:25:10.956 [main] INFO o.r.Reflections - [scan,232] - Reflections took 82 ms to scan 1 urls, producing 3 keys and 6 values -11:25:11.065 [main] INFO o.r.Reflections - [scan,232] - Reflections took 47 ms to scan 1 urls, producing 4 keys and 9 values -11:25:11.084 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -11:25:11.367 [main] INFO o.r.Reflections - [scan,232] - Reflections took 279 ms to scan 234 urls, producing 0 keys and 0 values -11:25:11.381 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -11:25:11.401 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -11:25:11.418 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -11:25:11.635 [main] INFO o.r.Reflections - [scan,232] - Reflections took 214 ms to scan 234 urls, producing 0 keys and 0 values -11:25:11.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:25:11.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1633566545 -11:25:11.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1081635795 -11:25:11.653 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:25:11.654 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:25:11.676 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:25:15.771 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001116827_192.168.110.85_59969 -11:25:15.774 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:25:15.773 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Notify connected event to listeners. -11:25:15.775 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [62885774-80be-46c7-b59c-9fb300c772c6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/188647125 -11:25:15.947 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:25:29.427 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -11:25:30.511 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -11:25:32.985 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0 -11:25:32.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:25:32.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1633566545 -11:25:32.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1081635795 -11:25:32.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:25:32.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:25:32.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:25:33.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001134445_192.168.110.85_59980 -11:25:33.120 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Notify connected event to listeners. -11:25:33.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:25:33.122 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9b911f4-73a3-4ea3-8415-d750c7c5ed9a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/188647125 -11:25:33.442 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2f6ba360-d668-49e3-873e-f57fa993536d -11:25:33.442 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] RpcClient init label, labels = {module=naming, source=sdk} -11:25:33.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:25:33.446 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:25:33.446 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:25:33.447 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:25:33.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001134899_192.168.110.85_59983 -11:25:33.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:25:33.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/188647125 -11:25:33.579 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Notify connected event to listeners. -11:25:34.125 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 38 -11:25:34.125 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 38 -11:25:34.414 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 39 -11:25:34.419 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 39 -11:25:36.657 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -11:25:36.698 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 32.171 seconds (JVM running for 39.416) -11:25:36.703 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -11:25:36.705 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -11:25:36.708 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -11:25:37.235 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 40 -11:25:37.239 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 40 -11:37:11.888 [nacos-grpc-client-executor-214] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 42 -11:37:11.889 [nacos-grpc-client-executor-214] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 42 -11:37:20.463 [nacos-grpc-client-executor-221] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 43 -11:37:20.464 [nacos-grpc-client-executor-221] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 43 -11:37:28.846 [nacos-grpc-client-executor-229] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 44 -11:37:28.847 [nacos-grpc-client-executor-229] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 44 -11:37:29.852 [nacos-grpc-client-executor-234] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 45 -11:37:29.852 [nacos-grpc-client-executor-234] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 45 -11:37:30.959 [nacos-grpc-client-executor-239] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 46 -11:37:30.960 [nacos-grpc-client-executor-239] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 46 -11:37:32.071 [nacos-grpc-client-executor-245] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Receive server push request, request = NotifySubscriberRequest, requestId = 47 -11:37:32.072 [nacos-grpc-client-executor-245] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2f6ba360-d668-49e3-873e-f57fa993536d] Ack server push request, request = NotifySubscriberRequest, requestId = 47 -11:38:08.163 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -11:38:08.169 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -11:38:08.509 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -11:38:08.511 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@25ed6f73[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -11:38:08.511 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723001134899_192.168.110.85_59983 -11:38:08.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@48ce6038[Running, pool size = 9, active threads = 1, queued tasks = 0, completed tasks = 276] -11:38:08.531 [nacos-grpc-client-executor-270] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723001134899_192.168.110.85_59983]Ignore complete event,isRunning:false,isAbandon=false -11:38:29.734 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:38:31.765 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3204af4a-3562-4add-9c2e-7036ec393bf3_config-0 -11:38:31.848 [main] INFO o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values -11:38:31.927 [main] INFO o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 4 keys and 9 values -11:38:31.961 [main] INFO o.r.Reflections - [scan,232] - Reflections took 29 ms to scan 1 urls, producing 3 keys and 10 values -11:38:32.326 [main] INFO o.r.Reflections - [scan,232] - Reflections took 352 ms to scan 234 urls, producing 0 keys and 0 values -11:38:32.342 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -11:38:32.361 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -11:38:32.378 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -11:38:32.598 [main] INFO o.r.Reflections - [scan,232] - Reflections took 216 ms to scan 234 urls, producing 0 keys and 0 values -11:38:32.602 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:38:32.603 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/676338251 -11:38:32.604 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1527061084 -11:38:32.606 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:38:32.609 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:38:32.626 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:38:36.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001917408_192.168.110.85_53767 -11:38:36.194 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Notify connected event to listeners. -11:38:36.195 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:38:36.196 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3204af4a-3562-4add-9c2e-7036ec393bf3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1109258131 -11:38:36.314 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:38:45.362 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -11:38:46.473 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -11:38:48.894 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 615e6114-5a0d-40c4-8880-647bed6feb0d_config-0 -11:38:48.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:38:48.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/676338251 -11:38:48.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1527061084 -11:38:48.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:38:48.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:38:48.896 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:38:49.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001930373_192.168.110.85_53770 -11:38:49.058 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Notify connected event to listeners. -11:38:49.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:38:49.059 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [615e6114-5a0d-40c4-8880-647bed6feb0d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1109258131 -11:38:49.277 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8e94fca3-f7ba-470f-bef3-3be6f61ba6ea -11:38:49.277 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] RpcClient init label, labels = {module=naming, source=sdk} -11:38:49.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:38:49.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:38:49.281 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:38:49.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:38:49.405 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723001930741_192.168.110.85_53771 -11:38:49.405 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:38:49.405 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Notify connected event to listeners. -11:38:49.405 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1109258131 -11:38:49.953 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 49 -11:38:49.956 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 49 -11:38:50.135 [nacos-grpc-client-executor-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 50 -11:38:50.137 [nacos-grpc-client-executor-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 50 -11:38:52.456 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -11:38:52.496 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 24.678 seconds (JVM running for 27.668) -11:38:52.502 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -11:38:52.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -11:38:52.507 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -11:38:52.960 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 51 -11:38:52.963 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 51 -11:39:50.306 [nacos-grpc-client-executor-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 55 -11:39:50.307 [nacos-grpc-client-executor-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 55 -11:40:12.977 [nacos-grpc-client-executor-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 56 -11:40:12.978 [nacos-grpc-client-executor-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 56 -11:43:34.624 [nacos-grpc-client-executor-111] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 57 -11:43:34.627 [nacos-grpc-client-executor-111] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 57 -11:44:12.851 [nacos-grpc-client-executor-123] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 59 -11:44:12.853 [nacos-grpc-client-executor-123] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 59 -11:44:51.214 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -11:44:51.223 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -11:44:51.793 [nacos-grpc-client-executor-139] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Receive server push request, request = NotifySubscriberRequest, requestId = 62 -11:44:51.793 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -11:44:51.794 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@16910b42[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -11:44:51.794 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723001930741_192.168.110.85_53771 -11:44:51.797 [nacos-grpc-client-executor-139] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e94fca3-f7ba-470f-bef3-3be6f61ba6ea] Ack server push request, request = NotifySubscriberRequest, requestId = 62 -11:44:51.802 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4d86b906[Running, pool size = 10, active threads = 0, queued tasks = 0, completed tasks = 140] -11:45:05.272 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:45:07.211 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0 -11:45:07.293 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -11:45:07.362 [main] INFO o.r.Reflections - [scan,232] - Reflections took 45 ms to scan 1 urls, producing 4 keys and 9 values -11:45:07.381 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -11:45:07.660 [main] INFO o.r.Reflections - [scan,232] - Reflections took 275 ms to scan 234 urls, producing 0 keys and 0 values -11:45:07.675 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -11:45:07.692 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -11:45:07.709 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -11:45:07.907 [main] INFO o.r.Reflections - [scan,232] - Reflections took 195 ms to scan 234 urls, producing 0 keys and 0 values -11:45:07.913 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:45:07.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1954355506 -11:45:07.915 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1935870377 -11:45:07.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:45:07.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:45:07.932 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:45:10.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723002312204_192.168.110.85_54028 -11:45:10.983 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify connected event to listeners. -11:45:10.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:45:10.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/121113063 -11:45:11.112 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:45:19.559 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -11:45:20.397 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -11:45:22.685 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f9195a1c-a529-4261-8fbe-739357c45031_config-0 -11:45:22.686 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:45:22.686 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1954355506 -11:45:22.686 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1935870377 -11:45:22.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:45:22.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:45:22.688 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:45:22.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723002324151_192.168.110.85_54031 -11:45:22.814 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify connected event to listeners. -11:45:22.814 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:45:22.814 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/121113063 -11:45:23.080 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d0bbf085-0d42-4c64-8c37-141fd0e955ec -11:45:23.080 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] RpcClient init label, labels = {module=naming, source=sdk} -11:45:23.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:45:23.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:45:23.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:45:23.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:45:23.208 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723002324548_192.168.110.85_54032 -11:45:23.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:45:23.209 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify connected event to listeners. -11:45:23.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/121113063 -11:45:23.806 [nacos-grpc-client-executor-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 64 -11:45:23.808 [nacos-grpc-client-executor-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 64 -11:45:23.992 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 65 -11:45:23.992 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 65 -11:45:23.995 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 66 -11:45:23.996 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 66 -11:45:26.101 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -11:45:26.144 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 22.725 seconds (JVM running for 24.847) -11:45:26.153 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -11:45:26.154 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -11:45:26.156 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -11:45:26.610 [nacos-grpc-client-executor-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 68 -11:45:26.614 [nacos-grpc-client-executor-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 68 -11:46:55.103 [nacos-grpc-client-executor-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = ClientDetectionRequest, requestId = 70 -11:46:55.104 [nacos-grpc-client-executor-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = ClientDetectionRequest, requestId = 70 -11:46:55.516 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 69 -11:46:55.516 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 69 -11:46:55.516 [nacos-grpc-client-executor-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 71 -11:46:55.516 [nacos-grpc-client-executor-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 71 -11:47:02.108 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Server healthy check fail, currentConnection = 1723002312204_192.168.110.85_54028 -11:47:02.108 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:47:02.112 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Server healthy check fail, currentConnection = 1723002324151_192.168.110.85_54031 -11:47:02.112 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:47:02.113 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Server healthy check fail, currentConnection = 1723002324548_192.168.110.85_54032 -11:47:02.113 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:47:05.917 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Success to connect a server [192.168.110.169:8848], connectionId = 1723002427021_192.168.110.85_51604 -11:47:05.918 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002324548_192.168.110.85_54032 -11:47:05.918 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002324548_192.168.110.85_54032 -11:47:05.926 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify disconnected event to listeners -11:47:05.926 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:47:05.934 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723002427049_192.168.110.85_51605 -11:47:05.935 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002324151_192.168.110.85_54031 -11:47:05.935 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002324151_192.168.110.85_54031 -11:47:05.935 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:47:05.937 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify disconnected event to listeners -11:47:05.937 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723002427026_192.168.110.85_51603 -11:47:05.937 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002312204_192.168.110.85_54028 -11:47:05.938 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify connected event to listeners. -11:47:05.938 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002312204_192.168.110.85_54028 -11:47:05.939 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:47:05.940 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify connected event to listeners. -11:47:05.941 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify disconnected event to listeners -11:47:05.941 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify connected event to listeners. -11:47:06.269 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723002427405_192.168.110.85_51608 -11:47:06.269 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002427026_192.168.110.85_51603 -11:47:06.270 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002427026_192.168.110.85_51603 -11:47:06.277 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify disconnected event to listeners -11:47:06.278 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify connected event to listeners. -11:47:06.286 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723002427401_192.168.110.85_51607 -11:47:06.286 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002427049_192.168.110.85_51605 -11:47:06.286 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002427049_192.168.110.85_51605 -11:47:06.287 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify disconnected event to listeners -11:47:06.287 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify connected event to listeners. -11:47:06.390 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Success to connect a server [192.168.110.169:8848], connectionId = 1723002427401_192.168.110.85_51606 -11:47:06.390 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002427021_192.168.110.85_51604 -11:47:06.390 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002427021_192.168.110.85_51604 -11:47:06.394 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify disconnected event to listeners -11:47:06.405 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify connected event to listeners. -11:47:06.497 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Server check success, currentServer is 192.168.110.169:8848 -11:47:08.921 [nacos-grpc-client-executor-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 74 -11:47:08.925 [nacos-grpc-client-executor-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 74 -11:47:08.987 [nacos-grpc-client-executor-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 76 -11:47:08.987 [nacos-grpc-client-executor-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 76 -11:47:08.989 [nacos-grpc-client-executor-67] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 75 -11:47:08.990 [nacos-grpc-client-executor-67] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 75 -11:48:07.501 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Server check success, currentServer is 192.168.110.169:8848 -11:48:49.336 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Server healthy check fail, currentConnection = 1723002427401_192.168.110.85_51607 -11:48:49.336 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:48:49.983 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Server healthy check fail, currentConnection = 1723002427401_192.168.110.85_51606 -11:48:49.984 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:48:49.987 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Server healthy check fail, currentConnection = 1723002427405_192.168.110.85_51608 -11:48:49.987 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:48:50.118 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723002531461_192.168.110.85_51631 -11:48:50.119 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002427401_192.168.110.85_51607 -11:48:50.119 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002427401_192.168.110.85_51607 -11:48:50.118 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723002531462_192.168.110.85_51632 -11:48:50.120 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify disconnected event to listeners -11:48:50.120 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Success to connect a server [192.168.110.169:8848], connectionId = 1723002531459_192.168.110.85_51630 -11:48:50.120 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002427401_192.168.110.85_51606 -11:48:50.121 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9195a1c-a529-4261-8fbe-739357c45031_config-0] Notify connected event to listeners. -11:48:50.121 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002427401_192.168.110.85_51606 -11:48:50.121 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify disconnected event to listeners -11:48:50.120 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723002427405_192.168.110.85_51608 -11:48:50.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002427405_192.168.110.85_51608 -11:48:50.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify disconnected event to listeners -11:48:50.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Notify connected event to listeners. -11:48:50.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Notify connected event to listeners. -11:48:52.871 [nacos-grpc-client-executor-97] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 78 -11:48:52.871 [nacos-grpc-client-executor-97] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 78 -11:48:52.874 [nacos-grpc-client-executor-98] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 80 -11:48:52.875 [nacos-grpc-client-executor-98] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 80 -11:48:52.877 [nacos-grpc-client-executor-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 81 -11:48:52.878 [nacos-grpc-client-executor-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 81 -11:58:03.941 [nacos-grpc-client-executor-250] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 82 -11:58:03.943 [nacos-grpc-client-executor-250] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 82 -11:58:04.143 [nacos-grpc-client-executor-251] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Receive server push request, request = NotifySubscriberRequest, requestId = 84 -11:58:04.145 [nacos-grpc-client-executor-251] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d0bbf085-0d42-4c64-8c37-141fd0e955ec] Ack server push request, request = NotifySubscriberRequest, requestId = 84 -12:02:55.891 [nacos-grpc-client-executor-222] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 85 -12:02:55.897 [nacos-grpc-client-executor-222] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b6544e-f1a9-4bcc-bcd8-4e6ee3677f84_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 85 -12:03:11.196 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -12:03:11.211 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -12:03:11.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -12:03:11.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1a3a4bf5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -12:03:11.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723002531459_192.168.110.85_51630 -12:03:11.653 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3012bfdf[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 342] -12:03:29.297 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -12:03:31.230 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 42935558-cd51-4eee-bef6-45acf00c2d5f_config-0 -12:03:31.320 [main] INFO o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values -12:03:31.373 [main] INFO o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 4 keys and 9 values -12:03:31.392 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -12:03:31.699 [main] INFO o.r.Reflections - [scan,232] - Reflections took 301 ms to scan 234 urls, producing 0 keys and 0 values -12:03:31.713 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -12:03:31.731 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -12:03:31.773 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 2 keys and 8 values -12:03:31.995 [main] INFO o.r.Reflections - [scan,232] - Reflections took 217 ms to scan 234 urls, producing 0 keys and 0 values -12:03:31.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -12:03:32.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/2063332705 -12:03:32.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/798516062 -12:03:32.002 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -12:03:32.003 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -12:03:32.018 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -12:03:35.222 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723003416457_192.168.110.85_51838 -12:03:35.224 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Notify connected event to listeners. -12:03:35.225 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -12:03:35.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [42935558-cd51-4eee-bef6-45acf00c2d5f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/328314683 -12:03:35.359 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -12:03:45.309 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -12:03:46.266 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -12:03:51.463 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0 -12:03:51.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -12:03:51.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/2063332705 -12:03:51.463 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/798516062 -12:03:51.464 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -12:03:51.464 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -12:03:51.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -12:03:51.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723003432986_192.168.110.85_51845 -12:03:51.732 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Notify connected event to listeners. -12:03:51.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -12:03:51.734 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e4fbe9b8-903e-45d1-8fc6-4e5f269a61cf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/328314683 -12:03:52.279 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 761851ff-b598-4fb9-8d66-f75e3a4126a2 -12:03:52.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] RpcClient init label, labels = {module=naming, source=sdk} -12:03:52.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -12:03:52.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -12:03:52.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -12:03:52.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -12:03:52.426 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723003433765_192.168.110.85_51846 -12:03:52.427 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -12:03:52.427 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/328314683 -12:03:52.427 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Notify connected event to listeners. -12:03:53.034 [nacos-grpc-client-executor-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Receive server push request, request = NotifySubscriberRequest, requestId = 86 -12:03:53.035 [nacos-grpc-client-executor-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Ack server push request, request = NotifySubscriberRequest, requestId = 86 -12:03:53.212 [nacos-grpc-client-executor-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Receive server push request, request = NotifySubscriberRequest, requestId = 87 -12:03:53.213 [nacos-grpc-client-executor-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Ack server push request, request = NotifySubscriberRequest, requestId = 87 -12:03:53.217 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Receive server push request, request = NotifySubscriberRequest, requestId = 88 -12:03:53.217 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Ack server push request, request = NotifySubscriberRequest, requestId = 88 -12:03:55.526 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -12:03:55.567 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 28.229 seconds (JVM running for 30.5) -12:03:55.573 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -12:03:55.575 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -12:03:55.578 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -12:03:56.154 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Receive server push request, request = NotifySubscriberRequest, requestId = 89 -12:03:56.216 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [761851ff-b598-4fb9-8d66-f75e3a4126a2] Ack server push request, request = NotifySubscriberRequest, requestId = 89 -12:04:26.588 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -12:04:26.608 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -12:04:27.093 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -12:04:27.093 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4d3abd76[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -12:04:27.094 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723003433765_192.168.110.85_51846 -12:04:27.101 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4eb23176[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 43] -12:04:39.165 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -12:04:41.153 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 168d696c-c174-420a-9ff9-a56284a545cc_config-0 -12:04:41.246 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -12:04:41.310 [main] INFO o.r.Reflections - [scan,232] - Reflections took 35 ms to scan 1 urls, producing 4 keys and 9 values -12:04:41.338 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 10 values -12:04:41.600 [main] INFO o.r.Reflections - [scan,232] - Reflections took 256 ms to scan 234 urls, producing 0 keys and 0 values -12:04:41.615 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -12:04:41.634 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -12:04:41.652 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -12:04:41.845 [main] INFO o.r.Reflections - [scan,232] - Reflections took 189 ms to scan 234 urls, producing 0 keys and 0 values -12:04:41.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -12:04:41.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/663119869 -12:04:41.879 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1749758430 -12:04:41.881 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -12:04:41.882 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -12:04:41.894 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -12:04:45.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723003486293_192.168.110.85_51900 -12:04:45.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -12:04:45.043 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Notify connected event to listeners. -12:04:45.047 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/918145945 -12:04:45.203 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -12:04:53.894 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -12:04:54.927 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -12:04:57.198 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4725d5f4-8d21-4e59-b329-cb28c216a520_config-0 -12:04:57.198 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -12:04:57.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/663119869 -12:04:57.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1749758430 -12:04:57.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -12:04:57.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -12:04:57.201 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -12:04:57.318 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723003498674_192.168.110.85_51905 -12:04:57.319 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Notify connected event to listeners. -12:04:57.319 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -12:04:57.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/918145945 -12:04:57.591 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 017201f8-166d-4897-a044-75000afe0958 -12:04:57.591 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] RpcClient init label, labels = {module=naming, source=sdk} -12:04:57.595 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -12:04:57.595 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -12:04:57.596 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -12:04:57.597 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -12:04:57.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723003499098_192.168.110.85_51906 -12:04:57.742 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Notify connected event to listeners. -12:04:57.742 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -12:04:57.743 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/918145945 -12:04:58.325 [nacos-grpc-client-executor-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Receive server push request, request = NotifySubscriberRequest, requestId = 90 -12:04:58.326 [nacos-grpc-client-executor-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Ack server push request, request = NotifySubscriberRequest, requestId = 90 -12:04:58.508 [nacos-grpc-client-executor-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Receive server push request, request = NotifySubscriberRequest, requestId = 91 -12:04:58.508 [nacos-grpc-client-executor-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Ack server push request, request = NotifySubscriberRequest, requestId = 91 -12:04:58.512 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Receive server push request, request = NotifySubscriberRequest, requestId = 92 -12:04:58.512 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Ack server push request, request = NotifySubscriberRequest, requestId = 92 -12:05:00.653 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -12:05:00.699 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 23.488 seconds (JVM running for 25.408) -12:05:00.710 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -12:05:00.713 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -12:05:00.714 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -12:05:01.263 [nacos-grpc-client-executor-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Receive server push request, request = NotifySubscriberRequest, requestId = 93 -12:05:01.272 [nacos-grpc-client-executor-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Ack server push request, request = NotifySubscriberRequest, requestId = 93 -12:05:17.066 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Server healthy check fail, currentConnection = 1723003499098_192.168.110.85_51906 -12:05:17.067 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Try to reconnect to a new server, server is not appointed, will choose a random server. -12:05:17.079 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Server healthy check fail, currentConnection = 1723003486293_192.168.110.85_51900 -12:05:17.079 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -12:05:17.093 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4725d5f4-8d21-4e59-b329-cb28c216a520_config-0] Server check success, currentServer is 192.168.110.169:8848 -12:05:17.242 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Success to connect a server [192.168.110.169:8848], connectionId = 1723003518562_192.168.110.85_51937 -12:05:17.243 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723003499098_192.168.110.85_51906 -12:05:17.243 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723003499098_192.168.110.85_51906 -12:05:17.245 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723003518562_192.168.110.85_51936 -12:05:17.247 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723003486293_192.168.110.85_51900 -12:05:17.248 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723003486293_192.168.110.85_51900 -12:05:17.249 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Notify disconnected event to listeners -12:05:17.249 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Notify disconnected event to listeners -12:05:17.250 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [168d696c-c174-420a-9ff9-a56284a545cc_config-0] Notify connected event to listeners. -12:05:17.251 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [017201f8-166d-4897-a044-75000afe0958] Notify connected event to listeners. -12:05:18.315 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -12:05:18.327 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -12:05:18.664 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -12:05:18.665 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@12a4bab2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -12:05:18.665 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723003518562_192.168.110.85_51937 -12:05:18.667 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7ab87970[Running, pool size = 10, active threads = 1, queued tasks = 0, completed tasks = 47] diff --git a/logs/ruoyi-gateway/info.2024-08-09.log b/logs/ruoyi-gateway/info.2024-08-09.log deleted file mode 100644 index c9abb56..0000000 --- a/logs/ruoyi-gateway/info.2024-08-09.log +++ /dev/null @@ -1,1066 +0,0 @@ -13:49:22.255 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -13:49:25.051 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0 -13:49:25.233 [main] INFO o.r.Reflections - [scan,232] - Reflections took 97 ms to scan 1 urls, producing 3 keys and 6 values -13:49:25.317 [main] INFO o.r.Reflections - [scan,232] - Reflections took 35 ms to scan 1 urls, producing 4 keys and 9 values -13:49:25.341 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values -13:49:25.643 [main] INFO o.r.Reflections - [scan,232] - Reflections took 292 ms to scan 234 urls, producing 0 keys and 0 values -13:49:25.664 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 5 values -13:49:25.684 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -13:49:25.705 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -13:49:25.968 [main] INFO o.r.Reflections - [scan,232] - Reflections took 260 ms to scan 234 urls, producing 0 keys and 0 values -13:49:25.974 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -13:49:25.975 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1331654213 -13:49:25.976 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1633566545 -13:49:25.977 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -13:49:25.979 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -13:49:26.018 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:49:31.207 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:49:31.773 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182572308_192.168.110.85_54117 -13:49:31.774 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Notify connected event to listeners. -13:49:31.775 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:49:31.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee23103f-209d-4477-bfbf-5fd4c8a1ce40_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1200689594 -13:49:31.974 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -13:49:46.482 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -13:49:47.684 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -13:49:52.041 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0 -13:49:52.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -13:49:52.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1331654213 -13:49:52.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1633566545 -13:49:52.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -13:49:52.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -13:49:52.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:49:52.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182593012_192.168.110.85_54126 -13:49:52.182 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Notify connected event to listeners. -13:49:52.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:49:52.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [590ca229-abdd-4f70-b737-4e0581e8a6e6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1200689594 -13:49:52.455 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 868064eb-b530-4a69-a12e-e60c175392be -13:49:52.456 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] RpcClient init label, labels = {module=naming, source=sdk} -13:49:52.461 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -13:49:52.461 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -13:49:52.462 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -13:49:52.462 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -13:49:52.592 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723182593412_192.168.110.85_54127 -13:49:52.593 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Notify connected event to listeners. -13:49:52.593 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -13:49:52.594 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1200689594 -13:49:53.261 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Receive server push request, request = NotifySubscriberRequest, requestId = 103 -13:49:53.262 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Ack server push request, request = NotifySubscriberRequest, requestId = 103 -13:49:56.032 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -13:49:56.073 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 37.071 seconds (JVM running for 41.15) -13:49:56.118 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -13:49:56.121 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -13:49:56.125 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -13:49:56.615 [nacos-grpc-client-executor-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Receive server push request, request = NotifySubscriberRequest, requestId = 104 -13:49:56.615 [nacos-grpc-client-executor-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Ack server push request, request = NotifySubscriberRequest, requestId = 104 -13:51:53.690 [nacos-grpc-client-executor-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Receive server push request, request = NotifySubscriberRequest, requestId = 107 -13:51:53.694 [nacos-grpc-client-executor-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Ack server push request, request = NotifySubscriberRequest, requestId = 107 -13:53:56.356 [nacos-grpc-client-executor-86] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Receive server push request, request = NotifySubscriberRequest, requestId = 108 -13:53:56.361 [nacos-grpc-client-executor-86] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Ack server push request, request = NotifySubscriberRequest, requestId = 108 -13:54:35.433 [nacos-grpc-client-executor-96] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Receive server push request, request = NotifySubscriberRequest, requestId = 110 -13:54:35.437 [nacos-grpc-client-executor-96] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Ack server push request, request = NotifySubscriberRequest, requestId = 110 -13:55:07.136 [nacos-grpc-client-executor-107] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Receive server push request, request = NotifySubscriberRequest, requestId = 112 -13:55:07.136 [nacos-grpc-client-executor-107] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [868064eb-b530-4a69-a12e-e60c175392be] Ack server push request, request = NotifySubscriberRequest, requestId = 112 -14:05:43.101 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -14:05:43.105 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -14:05:43.526 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -14:05:43.527 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5fba687a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -14:05:43.527 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723182593412_192.168.110.85_54127 -14:05:43.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@645951d[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 275] -14:05:57.437 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:06:00.537 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0 -14:06:00.613 [main] INFO o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values -14:06:00.664 [main] INFO o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 4 keys and 9 values -14:06:00.683 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -14:06:00.958 [main] INFO o.r.Reflections - [scan,232] - Reflections took 270 ms to scan 234 urls, producing 0 keys and 0 values -14:06:00.973 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -14:06:00.994 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -14:06:01.011 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -14:06:01.236 [main] INFO o.r.Reflections - [scan,232] - Reflections took 221 ms to scan 234 urls, producing 0 keys and 0 values -14:06:01.238 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:06:01.239 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1066575950 -14:06:01.239 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/217479224 -14:06:01.240 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:06:01.241 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:06:01.256 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:06:04.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183565501_192.168.110.85_57916 -14:06:04.777 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Notify connected event to listeners. -14:06:04.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:06:04.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1600330912 -14:06:04.928 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:06:15.142 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:06:15.959 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:06:18.519 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 24b4d66c-1309-40be-824b-242edfeb83b2_config-0 -14:06:18.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:06:18.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1066575950 -14:06:18.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/217479224 -14:06:18.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:06:18.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:06:18.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:06:18.645 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183579478_192.168.110.85_57933 -14:06:18.648 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Notify connected event to listeners. -14:06:18.646 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:06:18.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [24b4d66c-1309-40be-824b-242edfeb83b2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1600330912 -14:06:19.032 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9c1a68d5-00a7-44e8-bcca-3f0386591a7d -14:06:19.032 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] RpcClient init label, labels = {module=naming, source=sdk} -14:06:19.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:06:19.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:06:19.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:06:19.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:06:19.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183580013_192.168.110.85_57935 -14:06:19.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:06:19.276 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Notify connected event to listeners. -14:06:19.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1600330912 -14:06:19.843 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Receive server push request, request = NotifySubscriberRequest, requestId = 113 -14:06:19.843 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Ack server push request, request = NotifySubscriberRequest, requestId = 113 -14:06:20.028 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Receive server push request, request = NotifySubscriberRequest, requestId = 114 -14:06:20.029 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Ack server push request, request = NotifySubscriberRequest, requestId = 114 -14:06:22.398 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -14:06:22.441 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 27.565 seconds (JVM running for 29.612) -14:06:22.447 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:06:22.448 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:06:22.450 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:06:22.958 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Receive server push request, request = NotifySubscriberRequest, requestId = 115 -14:06:22.960 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9c1a68d5-00a7-44e8-bcca-3f0386591a7d] Ack server push request, request = NotifySubscriberRequest, requestId = 115 -14:06:33.971 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 116 -14:06:33.987 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d63d3537-2b8f-4f7f-858c-11094dca0c5b_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 116 -14:09:01.514 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -14:09:01.524 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -14:09:01.910 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -14:09:01.910 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4bdac15b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -14:09:01.910 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183580013_192.168.110.85_57935 -14:09:01.921 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3e386a9a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 72] -14:09:12.787 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:09:14.771 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 40d6612d-947e-481a-99af-67af18aec4c7_config-0 -14:09:14.857 [main] INFO o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 3 keys and 6 values -14:09:14.898 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values -14:09:14.918 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -14:09:15.192 [main] INFO o.r.Reflections - [scan,232] - Reflections took 270 ms to scan 234 urls, producing 0 keys and 0 values -14:09:15.208 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -14:09:15.226 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -14:09:15.243 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -14:09:15.459 [main] INFO o.r.Reflections - [scan,232] - Reflections took 212 ms to scan 234 urls, producing 0 keys and 0 values -14:09:15.464 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:09:15.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1609038183 -14:09:15.466 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1508130444 -14:09:15.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:09:15.468 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:09:15.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:09:18.529 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183759263_192.168.110.85_62345 -14:09:18.530 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Notify connected event to listeners. -14:09:18.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:09:18.533 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [40d6612d-947e-481a-99af-67af18aec4c7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/67985650 -14:09:18.666 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:10:01.734 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:10:03.643 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of eff4b193-c360-436a-8891-bd27cc604570_config-0 -14:10:03.750 [main] INFO o.r.Reflections - [scan,232] - Reflections took 68 ms to scan 1 urls, producing 3 keys and 6 values -14:10:03.812 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values -14:10:03.842 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 10 values -14:10:04.186 [main] INFO o.r.Reflections - [scan,232] - Reflections took 338 ms to scan 234 urls, producing 0 keys and 0 values -14:10:04.202 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -14:10:04.226 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values -14:10:04.245 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -14:10:04.487 [main] INFO o.r.Reflections - [scan,232] - Reflections took 238 ms to scan 234 urls, producing 0 keys and 0 values -14:10:04.492 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:10:04.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1907808127 -14:10:04.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/409393797 -14:10:04.495 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:10:04.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:10:04.508 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:10:09.010 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183809664_192.168.110.85_62392 -14:10:09.012 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Notify connected event to listeners. -14:10:09.014 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:10:09.014 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [eff4b193-c360-436a-8891-bd27cc604570_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1751751420 -14:10:09.143 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:10:24.908 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:10:26.859 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ab263563-87a5-4931-9bf0-05e906496f9c_config-0 -14:10:26.943 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -14:10:26.989 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -14:10:27.007 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -14:10:27.278 [main] INFO o.r.Reflections - [scan,232] - Reflections took 267 ms to scan 234 urls, producing 0 keys and 0 values -14:10:27.294 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -14:10:27.320 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 1 keys and 7 values -14:10:27.339 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -14:10:27.558 [main] INFO o.r.Reflections - [scan,232] - Reflections took 216 ms to scan 234 urls, producing 0 keys and 0 values -14:10:27.564 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:10:27.565 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1380593659 -14:10:27.566 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/794940817 -14:10:27.568 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:10:27.569 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:10:27.586 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:10:30.912 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183831636_192.168.110.85_62425 -14:10:30.914 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify connected event to listeners. -14:10:30.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:10:30.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/99219259 -14:10:31.038 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:10:39.401 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:10:40.184 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:10:42.408 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0 -14:10:42.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:10:42.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1380593659 -14:10:42.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/794940817 -14:10:42.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:10:42.410 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:10:42.411 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:10:42.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183843379_192.168.110.85_62434 -14:10:42.554 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify connected event to listeners. -14:10:42.554 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:10:42.555 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/99219259 -14:10:42.794 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of dfcf71be-5c6b-4212-92cf-d6de88820aa1 -14:10:42.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] RpcClient init label, labels = {module=naming, source=sdk} -14:10:42.800 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:10:42.800 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:10:42.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:10:42.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:10:42.929 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723183843767_192.168.110.85_62435 -14:10:42.930 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify connected event to listeners. -14:10:42.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:10:42.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/99219259 -14:10:43.471 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 117 -14:10:43.471 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 117 -14:10:43.657 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 118 -14:10:43.659 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 118 -14:10:45.783 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -14:10:45.828 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 22.904 seconds (JVM running for 24.78) -14:10:45.839 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:10:45.839 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:10:45.843 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:10:46.384 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 119 -14:10:46.384 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 119 -14:11:49.040 [nacos-grpc-client-executor-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 122 -14:11:49.039 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 120 -14:11:49.043 [nacos-grpc-client-executor-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 122 -14:11:57.544 [nacos-grpc-client-executor-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = ClientDetectionRequest, requestId = 121 -14:11:57.545 [nacos-grpc-client-executor-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = ClientDetectionRequest, requestId = 121 -14:11:49.044 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 120 -14:11:57.570 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Server healthy check fail, currentConnection = 1723183843379_192.168.110.85_62434 -14:11:57.571 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Server healthy check fail, currentConnection = 1723183831636_192.168.110.85_62425 -14:11:57.571 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:11:57.570 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:11:57.577 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Server healthy check fail, currentConnection = 1723183843767_192.168.110.85_62435 -14:11:57.577 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:11:57.774 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723183918580_192.168.110.85_54776 -14:11:57.774 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183831636_192.168.110.85_62425 -14:11:57.774 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183831636_192.168.110.85_62425 -14:11:57.780 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify disconnected event to listeners -14:11:57.780 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:11:57.783 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify connected event to listeners. -14:11:57.855 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Success to connect a server [192.168.110.169:8848], connectionId = 1723183918610_192.168.110.85_54778 -14:11:57.855 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183843767_192.168.110.85_62435 -14:11:57.855 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723183918610_192.168.110.85_54777 -14:11:57.856 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183843379_192.168.110.85_62434 -14:11:57.856 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183843379_192.168.110.85_62434 -14:11:57.856 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183843767_192.168.110.85_62435 -14:11:57.857 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:11:57.857 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:11:57.859 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify disconnected event to listeners -14:11:57.859 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify connected event to listeners. -14:11:57.859 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify disconnected event to listeners -14:11:57.868 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify connected event to listeners. -14:11:57.995 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723183918747_192.168.110.85_54779 -14:11:58.002 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183918580_192.168.110.85_54776 -14:11:58.006 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183918580_192.168.110.85_54776 -14:11:58.007 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723183918824_192.168.110.85_54780 -14:11:58.019 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183918610_192.168.110.85_54777 -14:11:58.045 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183918610_192.168.110.85_54777 -14:11:58.054 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify disconnected event to listeners -14:11:58.055 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify connected event to listeners. -14:11:58.056 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify disconnected event to listeners -14:11:58.060 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify connected event to listeners. -14:11:58.094 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Success to connect a server [192.168.110.169:8848], connectionId = 1723183918832_192.168.110.85_54781 -14:11:58.094 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183918610_192.168.110.85_54778 -14:11:58.094 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183918610_192.168.110.85_54778 -14:11:58.104 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723183918580_192.168.110.85_54776]Ignore complete event,isRunning:true,isAbandon=true -14:11:58.115 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify disconnected event to listeners -14:11:58.120 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723183918610_192.168.110.85_54777]Ignore complete event,isRunning:true,isAbandon=true -14:11:58.124 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify connected event to listeners. -14:12:01.102 [nacos-grpc-client-executor-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 123 -14:12:01.102 [nacos-grpc-client-executor-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 123 -14:12:01.106 [nacos-grpc-client-executor-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 124 -14:12:01.108 [nacos-grpc-client-executor-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 124 -14:20:04.059 [nacos-grpc-client-executor-121] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 127 -14:20:04.059 [nacos-grpc-client-executor-121] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 127 -14:20:04.063 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Server healthy check fail, currentConnection = 1723183918747_192.168.110.85_54779 -14:20:04.063 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:20:04.064 [nacos-grpc-client-executor-107] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 125 -14:20:04.064 [nacos-grpc-client-executor-107] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 125 -14:20:04.066 [nacos-grpc-client-executor-107] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723183918747_192.168.110.85_54779]Ignore complete event,isRunning:false,isAbandon=false -14:20:04.068 [nacos-grpc-client-executor-150] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = ClientDetectionRequest, requestId = 126 -14:20:04.069 [nacos-grpc-client-executor-150] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = ClientDetectionRequest, requestId = 126 -14:20:04.073 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Server healthy check fail, currentConnection = 1723183918832_192.168.110.85_54781 -14:20:04.074 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:20:04.097 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Server healthy check fail, currentConnection = 1723183918824_192.168.110.85_54780 -14:20:04.098 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:20:04.234 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723184405039_192.168.110.85_56571 -14:20:04.234 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183918747_192.168.110.85_54779 -14:20:04.236 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183918747_192.168.110.85_54779 -14:20:04.238 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify disconnected event to listeners -14:20:04.246 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Success to connect a server [192.168.110.169:8848], connectionId = 1723184405041_192.168.110.85_56572 -14:20:04.246 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183918832_192.168.110.85_54781 -14:20:04.246 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183918832_192.168.110.85_54781 -14:20:04.254 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:20:04.261 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify disconnected event to listeners -14:20:04.267 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Notify connected event to listeners. -14:20:04.271 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723184405062_192.168.110.85_56573 -14:20:04.272 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723183918824_192.168.110.85_54780 -14:20:04.272 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723183918824_192.168.110.85_54780 -14:20:04.273 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify disconnected event to listeners -14:20:04.273 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:20:04.308 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify connected event to listeners. -14:20:04.321 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify connected event to listeners. -14:20:04.435 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Success to connect a server [192.168.110.169:8848], connectionId = 1723184405236_192.168.110.85_56574 -14:20:04.435 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723184405041_192.168.110.85_56572 -14:20:04.436 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723184405041_192.168.110.85_56572 -14:20:04.437 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify disconnected event to listeners -14:20:04.437 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Notify connected event to listeners. -14:20:04.440 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Server check success, currentServer is 192.168.110.169:8848 -14:20:04.452 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723184405261_192.168.110.85_56575 -14:20:04.452 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723184405062_192.168.110.85_56573 -14:20:04.452 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723184405062_192.168.110.85_56573 -14:20:04.454 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify disconnected event to listeners -14:20:04.460 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12ee4b73-eb13-444e-9cb1-a192deaa8aa6_config-0] Notify connected event to listeners. -14:20:07.598 [nacos-grpc-client-executor-172] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 128 -14:20:07.600 [nacos-grpc-client-executor-172] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 128 -14:20:07.601 [nacos-grpc-client-executor-173] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Receive server push request, request = NotifySubscriberRequest, requestId = 129 -14:20:07.602 [nacos-grpc-client-executor-173] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [dfcf71be-5c6b-4212-92cf-d6de88820aa1] Ack server push request, request = NotifySubscriberRequest, requestId = 129 -14:30:24.985 [nacos-grpc-client-executor-235] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 130 -14:30:24.986 [nacos-grpc-client-executor-235] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ab263563-87a5-4931-9bf0-05e906496f9c_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 130 -14:39:31.644 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -14:39:31.649 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -14:39:32.016 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -14:39:32.017 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3349d9e1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -14:39:32.027 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723184405236_192.168.110.85_56574 -14:39:32.030 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@78d6aed9[Running, pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 477] -14:39:44.410 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:39:46.352 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0 -14:39:46.438 [main] INFO o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values -14:39:46.491 [main] INFO o.r.Reflections - [scan,232] - Reflections took 28 ms to scan 1 urls, producing 4 keys and 9 values -14:39:46.515 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values -14:39:46.837 [main] INFO o.r.Reflections - [scan,232] - Reflections took 318 ms to scan 234 urls, producing 0 keys and 0 values -14:39:46.852 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -14:39:46.872 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -14:39:46.889 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -14:39:47.103 [main] INFO o.r.Reflections - [scan,232] - Reflections took 210 ms to scan 234 urls, producing 0 keys and 0 values -14:39:47.107 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:39:47.108 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/285781448 -14:39:47.109 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/145329976 -14:39:47.110 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:39:47.111 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:39:47.126 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:39:51.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723185591824_192.168.110.85_58836 -14:39:51.096 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:39:51.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Notify connected event to listeners. -14:39:51.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [de0ad431-40e3-48a9-bf68-2063d359fdc4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1048274391 -14:39:51.227 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:39:59.956 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:40:00.730 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:40:02.981 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ad52d94e-115f-4c29-a13c-f21154738fe6_config-0 -14:40:02.981 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:40:02.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/285781448 -14:40:02.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/145329976 -14:40:02.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:40:02.983 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:40:02.984 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:40:03.124 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723185603972_192.168.110.85_58839 -14:40:03.124 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:40:03.124 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Notify connected event to listeners. -14:40:03.124 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ad52d94e-115f-4c29-a13c-f21154738fe6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1048274391 -14:40:03.348 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5c4a8635-0579-41ca-a09b-e17dbeda003e -14:40:03.348 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] RpcClient init label, labels = {module=naming, source=sdk} -14:40:03.351 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:40:03.352 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:40:03.353 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:40:03.354 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:40:03.485 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723185604330_192.168.110.85_58840 -14:40:03.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:40:03.486 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Notify connected event to listeners. -14:40:03.486 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1048274391 -14:40:04.031 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Receive server push request, request = NotifySubscriberRequest, requestId = 131 -14:40:04.032 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Ack server push request, request = NotifySubscriberRequest, requestId = 131 -14:40:04.217 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Receive server push request, request = NotifySubscriberRequest, requestId = 132 -14:40:04.218 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Ack server push request, request = NotifySubscriberRequest, requestId = 132 -14:40:06.405 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -14:40:06.448 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 23.963 seconds (JVM running for 25.93) -14:40:06.459 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:40:06.460 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:40:06.462 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:40:06.936 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Receive server push request, request = NotifySubscriberRequest, requestId = 133 -14:40:06.939 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Ack server push request, request = NotifySubscriberRequest, requestId = 133 -14:41:38.432 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -14:41:38.453 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -14:41:38.943 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -14:41:38.944 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@79493e9e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -14:41:38.997 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723185604330_192.168.110.85_58840 -14:41:39.050 [nacos-grpc-client-executor-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Receive server push request, request = NotifySubscriberRequest, requestId = 134 -14:41:39.056 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5266946f[Running, pool size = 6, active threads = 1, queued tasks = 0, completed tasks = 51] -14:41:39.070 [nacos-grpc-client-executor-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c4a8635-0579-41ca-a09b-e17dbeda003e] Ack server push request, request = NotifySubscriberRequest, requestId = 134 -14:41:53.743 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:41:55.928 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 67d5305c-b882-4637-8651-34fa3fd3e27b_config-0 -14:41:56.005 [main] INFO o.r.Reflections - [scan,232] - Reflections took 48 ms to scan 1 urls, producing 3 keys and 6 values -14:41:56.045 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -14:41:56.062 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -14:41:56.327 [main] INFO o.r.Reflections - [scan,232] - Reflections took 260 ms to scan 234 urls, producing 0 keys and 0 values -14:41:56.341 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -14:41:56.359 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -14:41:56.375 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -14:41:56.583 [main] INFO o.r.Reflections - [scan,232] - Reflections took 205 ms to scan 234 urls, producing 0 keys and 0 values -14:41:56.587 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:41:56.588 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1254827280 -14:41:56.589 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2078517710 -14:41:56.590 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:41:56.591 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:41:56.605 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:41:59.879 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723185720619_192.168.110.85_59511 -14:41:59.880 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Notify connected event to listeners. -14:41:59.882 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:41:59.883 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [67d5305c-b882-4637-8651-34fa3fd3e27b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1092245861 -14:42:00.028 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:42:08.862 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:42:10.042 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:42:12.615 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0 -14:42:12.615 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:42:12.615 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1254827280 -14:42:12.615 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2078517710 -14:42:12.615 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:42:12.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:42:12.617 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:42:12.744 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723185733598_192.168.110.85_59521 -14:42:12.745 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Notify connected event to listeners. -14:42:12.745 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:42:12.745 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1f77d6a7-c388-4fd7-8bdd-6bedbfbd2ff9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1092245861 -14:42:13.011 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 53a87432-dd00-4399-acc1-732d974c9b67 -14:42:13.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] RpcClient init label, labels = {module=naming, source=sdk} -14:42:13.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:42:13.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:42:13.017 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:42:13.018 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:42:13.154 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723185734000_192.168.110.85_59522 -14:42:13.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:42:13.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1092245861 -14:42:13.155 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Notify connected event to listeners. -14:42:13.836 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Receive server push request, request = NotifySubscriberRequest, requestId = 135 -14:42:13.837 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Ack server push request, request = NotifySubscriberRequest, requestId = 135 -14:42:13.968 [nacos-grpc-client-executor-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Receive server push request, request = NotifySubscriberRequest, requestId = 136 -14:42:13.977 [nacos-grpc-client-executor-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Ack server push request, request = NotifySubscriberRequest, requestId = 136 -14:42:17.216 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -14:42:17.257 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 25.604 seconds (JVM running for 27.62) -14:42:17.262 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:42:17.263 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:42:17.268 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:42:17.803 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Receive server push request, request = NotifySubscriberRequest, requestId = 137 -14:42:17.814 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [53a87432-dd00-4399-acc1-732d974c9b67] Ack server push request, request = NotifySubscriberRequest, requestId = 137 -14:52:57.613 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -14:52:57.704 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -14:52:58.020 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -14:52:58.021 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@259540fa[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -14:52:58.021 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723185734000_192.168.110.85_59522 -14:52:58.025 [nacos-grpc-client-executor-196] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723185734000_192.168.110.85_59522]Ignore complete event,isRunning:false,isAbandon=false -14:52:58.030 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@54c73022[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 197] -14:53:16.436 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:53:19.070 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3015dd72-5607-4e71-9e1e-3055294109af_config-0 -14:53:19.153 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -14:53:19.212 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -14:53:19.230 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -14:53:19.505 [main] INFO o.r.Reflections - [scan,232] - Reflections took 271 ms to scan 234 urls, producing 0 keys and 0 values -14:53:19.520 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -14:53:19.540 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -14:53:19.556 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -14:53:19.761 [main] INFO o.r.Reflections - [scan,232] - Reflections took 202 ms to scan 234 urls, producing 0 keys and 0 values -14:53:19.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:53:19.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/407877261 -14:53:19.767 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1910034407 -14:53:19.768 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:53:19.769 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:53:19.781 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:53:23.355 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723186404101_192.168.110.85_63312 -14:53:23.357 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Notify connected event to listeners. -14:53:23.359 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:53:23.361 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3015dd72-5607-4e71-9e1e-3055294109af_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1656197285 -14:53:23.513 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:53:32.277 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:53:33.041 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:53:35.335 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0 -14:53:35.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:53:35.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/407877261 -14:53:35.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1910034407 -14:53:35.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:53:35.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:53:35.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:53:35.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723186416326_192.168.110.85_63317 -14:53:35.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:53:35.481 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Notify connected event to listeners. -14:53:35.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b9d0636d-1796-4f1e-9cd5-2b88cf005994_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1656197285 -14:53:35.726 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 719cd3ce-82d5-4ef8-beb1-96118b0c7247 -14:53:35.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] RpcClient init label, labels = {module=naming, source=sdk} -14:53:35.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:53:35.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:53:35.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:53:35.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:53:35.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723186416720_192.168.110.85_63320 -14:53:35.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:53:35.859 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Notify connected event to listeners. -14:53:35.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1656197285 -14:53:36.477 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Receive server push request, request = NotifySubscriberRequest, requestId = 138 -14:53:36.477 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Ack server push request, request = NotifySubscriberRequest, requestId = 138 -14:53:36.559 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Receive server push request, request = NotifySubscriberRequest, requestId = 139 -14:53:36.560 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Ack server push request, request = NotifySubscriberRequest, requestId = 139 -14:53:38.640 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -14:53:38.699 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 25.859 seconds (JVM running for 28.72) -14:53:38.712 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:53:38.715 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:53:38.718 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:53:39.183 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Receive server push request, request = NotifySubscriberRequest, requestId = 140 -14:53:39.186 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Ack server push request, request = NotifySubscriberRequest, requestId = 140 -15:04:00.948 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:04:00.963 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:04:01.470 [nacos-grpc-client-executor-194] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Receive server push request, request = NotifySubscriberRequest, requestId = 141 -15:04:01.473 [nacos-grpc-client-executor-194] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [719cd3ce-82d5-4ef8-beb1-96118b0c7247] Ack server push request, request = NotifySubscriberRequest, requestId = 141 -15:04:01.533 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:04:01.534 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@537e3f5d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:04:01.534 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723186416720_192.168.110.85_63320 -15:04:01.538 [nacos-grpc-client-executor-195] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723186416720_192.168.110.85_63320]Ignore complete event,isRunning:false,isAbandon=false -15:04:01.542 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@37a8a3f5[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 196] -15:04:15.295 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:04:17.230 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 987e9e74-d9c9-417a-a81d-58db3e08f379_config-0 -15:04:17.310 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -15:04:17.353 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values -15:04:17.376 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values -15:04:17.656 [main] INFO o.r.Reflections - [scan,232] - Reflections took 274 ms to scan 234 urls, producing 0 keys and 0 values -15:04:17.670 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -15:04:17.686 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -15:04:17.702 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -15:04:17.899 [main] INFO o.r.Reflections - [scan,232] - Reflections took 193 ms to scan 234 urls, producing 0 keys and 0 values -15:04:17.904 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:04:17.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/300659126 -15:04:17.906 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/179233442 -15:04:17.907 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:04:17.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:04:17.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:04:21.129 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723187061883_192.168.110.85_56823 -15:04:21.129 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Notify connected event to listeners. -15:04:21.131 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:04:21.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [987e9e74-d9c9-417a-a81d-58db3e08f379_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/797313059 -15:04:21.249 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:04:29.882 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:04:30.642 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:04:32.859 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0 -15:04:32.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:04:32.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/300659126 -15:04:32.860 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/179233442 -15:04:32.860 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:04:32.860 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:04:32.861 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:04:32.998 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723187073855_192.168.110.85_56826 -15:04:32.999 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Notify connected event to listeners. -15:04:32.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:04:33.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [92ad6966-94ab-42cf-880a-f2ac96563aa2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/797313059 -15:04:33.231 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cd1da4c9-aa02-48e9-9d24-ca73e2c0da36 -15:04:33.232 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] RpcClient init label, labels = {module=naming, source=sdk} -15:04:33.236 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:04:33.236 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:04:33.237 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:04:33.238 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:04:33.360 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723187074231_192.168.110.85_56827 -15:04:33.360 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Notify connected event to listeners. -15:04:33.360 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:04:33.361 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/797313059 -15:04:33.998 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Receive server push request, request = NotifySubscriberRequest, requestId = 142 -15:04:33.999 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Ack server push request, request = NotifySubscriberRequest, requestId = 142 -15:04:34.068 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Receive server push request, request = NotifySubscriberRequest, requestId = 143 -15:04:34.068 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Ack server push request, request = NotifySubscriberRequest, requestId = 143 -15:04:36.222 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -15:04:36.265 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 23.527 seconds (JVM running for 26.019) -15:04:36.276 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -15:04:36.277 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -15:04:36.279 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -15:04:36.795 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Receive server push request, request = NotifySubscriberRequest, requestId = 144 -15:04:36.798 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cd1da4c9-aa02-48e9-9d24-ca73e2c0da36] Ack server push request, request = NotifySubscriberRequest, requestId = 144 -15:07:56.228 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:07:56.232 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:07:56.601 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:07:56.601 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f0b4203[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:07:56.601 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723187074231_192.168.110.85_56827 -15:07:56.604 [nacos-grpc-client-executor-77] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723187074231_192.168.110.85_56827]Ignore complete event,isRunning:false,isAbandon=false -15:07:56.608 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4b952368[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 78] -15:08:09.085 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:08:11.025 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 60027b02-e88b-4c41-b403-5a59602589ee_config-0 -15:08:11.105 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -15:08:11.148 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -15:08:11.165 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -15:08:11.429 [main] INFO o.r.Reflections - [scan,232] - Reflections took 258 ms to scan 234 urls, producing 0 keys and 0 values -15:08:11.442 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -15:08:11.462 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -15:08:11.479 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -15:08:11.709 [main] INFO o.r.Reflections - [scan,232] - Reflections took 226 ms to scan 234 urls, producing 0 keys and 0 values -15:08:11.710 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:08:11.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1710422448 -15:08:11.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1609038183 -15:08:11.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:08:11.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:08:11.727 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:08:14.884 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723187295630_192.168.110.85_65007 -15:08:14.885 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Notify connected event to listeners. -15:08:14.887 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:14.888 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60027b02-e88b-4c41-b403-5a59602589ee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1252069894 -15:08:15.026 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:08:23.418 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:08:24.347 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:08:26.589 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 783a0a14-1796-41da-bd72-470809126cee_config-0 -15:08:26.589 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:08:26.589 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1710422448 -15:08:26.589 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1609038183 -15:08:26.589 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:08:26.590 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:08:26.591 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:08:26.710 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723187307582_192.168.110.85_65019 -15:08:26.718 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Notify connected event to listeners. -15:08:26.718 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:26.718 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [783a0a14-1796-41da-bd72-470809126cee_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1252069894 -15:08:26.962 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 842245db-a775-43d9-9c87-a73bd0b19049 -15:08:26.962 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] RpcClient init label, labels = {module=naming, source=sdk} -15:08:26.965 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:26.966 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:26.966 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:26.968 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:08:27.082 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723187307959_192.168.110.85_65020 -15:08:27.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:27.083 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Notify connected event to listeners. -15:08:27.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1252069894 -15:08:27.685 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Receive server push request, request = NotifySubscriberRequest, requestId = 145 -15:08:27.686 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Ack server push request, request = NotifySubscriberRequest, requestId = 145 -15:08:27.767 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Receive server push request, request = NotifySubscriberRequest, requestId = 146 -15:08:27.768 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Ack server push request, request = NotifySubscriberRequest, requestId = 146 -15:08:29.965 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -15:08:30.007 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 22.865 seconds (JVM running for 24.842) -15:08:30.013 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -15:08:30.016 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -15:08:30.021 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -15:08:30.493 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Receive server push request, request = NotifySubscriberRequest, requestId = 147 -15:08:30.497 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Ack server push request, request = NotifySubscriberRequest, requestId = 147 -15:09:09.829 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:09:09.852 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:09:10.399 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Receive server push request, request = NotifySubscriberRequest, requestId = 148 -15:09:10.401 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [842245db-a775-43d9-9c87-a73bd0b19049] Ack server push request, request = NotifySubscriberRequest, requestId = 148 -15:09:10.472 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:09:10.472 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5503ca6c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:09:10.473 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723187307959_192.168.110.85_65020 -15:09:10.479 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@292afe12[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 40] -17:17:39.186 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:17:41.245 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0 -17:17:41.332 [main] INFO o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values -17:17:41.374 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -17:17:41.392 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -17:17:41.658 [main] INFO o.r.Reflections - [scan,232] - Reflections took 262 ms to scan 235 urls, producing 0 keys and 0 values -17:17:41.673 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:17:41.691 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -17:17:41.707 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:17:41.906 [main] INFO o.r.Reflections - [scan,232] - Reflections took 195 ms to scan 235 urls, producing 0 keys and 0 values -17:17:41.911 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:17:41.913 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/775911842 -17:17:41.913 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/341887005 -17:17:41.915 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:17:41.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:17:41.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:17:45.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195064771_192.168.110.85_63252 -17:17:45.018 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Notify connected event to listeners. -17:17:45.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:17:45.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1985828309 -17:17:45.188 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:17:53.480 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -17:17:54.288 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -17:17:56.518 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0 -17:17:56.518 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:17:56.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/775911842 -17:17:56.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/341887005 -17:17:56.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:17:56.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:17:56.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:17:56.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195076558_192.168.110.85_63256 -17:17:56.656 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Notify connected event to listeners. -17:17:56.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:17:56.657 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7575e2fc-f068-4519-9b6c-c0ea32765f29_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1985828309 -17:17:56.888 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb -17:17:56.889 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] RpcClient init label, labels = {module=naming, source=sdk} -17:17:56.892 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:17:56.893 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:17:56.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:17:56.895 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:17:57.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195076929_192.168.110.85_63257 -17:17:57.021 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Notify connected event to listeners. -17:17:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:17:57.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1985828309 -17:17:57.647 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 149 -17:17:57.648 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 149 -17:17:59.946 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -17:18:00.005 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 22.708 seconds (JVM running for 26.102) -17:18:00.013 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -17:18:00.015 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -17:18:00.017 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -17:18:00.460 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 150 -17:18:00.460 [nacos-grpc-client-executor-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 150 -17:18:27.821 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 151 -17:18:27.822 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 151 -17:18:48.555 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 152 -17:18:48.560 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 152 -17:24:00.859 [nacos-grpc-client-executor-84] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 154 -17:24:00.860 [nacos-grpc-client-executor-84] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5c9a31a8-b163-47e1-ab44-c63ff37b6d1e_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 154 -17:26:30.312 [nacos-grpc-client-executor-163] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 158 -17:26:30.328 [nacos-grpc-client-executor-163] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 158 -17:26:33.638 [nacos-grpc-client-executor-165] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 160 -17:26:33.640 [nacos-grpc-client-executor-165] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 160 -17:27:06.556 [nacos-grpc-client-executor-174] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Receive server push request, request = NotifySubscriberRequest, requestId = 163 -17:27:06.561 [nacos-grpc-client-executor-174] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c6755f6f-ea29-4e80-bcdc-8c0ef190b2fb] Ack server push request, request = NotifySubscriberRequest, requestId = 163 -17:27:57.408 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:27:57.418 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:27:57.760 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:27:57.760 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41bd583f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:27:57.760 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195076929_192.168.110.85_63257 -17:27:57.766 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@19f83313[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 187] -17:28:10.710 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:28:12.652 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0 -17:28:12.736 [main] INFO o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values -17:28:12.779 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values -17:28:12.797 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -17:28:13.069 [main] INFO o.r.Reflections - [scan,232] - Reflections took 267 ms to scan 235 urls, producing 0 keys and 0 values -17:28:13.084 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:28:13.101 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -17:28:13.118 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -17:28:13.326 [main] INFO o.r.Reflections - [scan,232] - Reflections took 205 ms to scan 235 urls, producing 0 keys and 0 values -17:28:13.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:28:13.332 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1809456409 -17:28:13.332 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/684220724 -17:28:13.333 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:28:13.334 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:28:13.350 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:28:16.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195696353_192.168.110.85_50101 -17:28:16.538 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Notify connected event to listeners. -17:28:16.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:28:16.541 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [aca3ccec-6cf8-4582-a424-fbf671b7d799_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/520043771 -17:28:16.665 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:28:25.276 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -17:28:26.081 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -17:28:28.338 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 161d0fb5-d4cd-4494-a771-810da6825af6_config-0 -17:28:28.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:28:28.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1809456409 -17:28:28.339 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/684220724 -17:28:28.339 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:28:28.339 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:28:28.340 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:28:28.475 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195708384_192.168.110.85_50107 -17:28:28.476 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Notify connected event to listeners. -17:28:28.476 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:28:28.476 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [161d0fb5-d4cd-4494-a771-810da6825af6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/520043771 -17:28:28.705 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b8d18cb4-2248-43e2-b135-16601a489de8 -17:28:28.706 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] RpcClient init label, labels = {module=naming, source=sdk} -17:28:28.709 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:28:28.709 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:28:28.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:28:28.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:28:28.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195708761_192.168.110.85_50108 -17:28:28.856 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:28:28.856 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Notify connected event to listeners. -17:28:28.856 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/520043771 -17:28:29.397 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Receive server push request, request = NotifySubscriberRequest, requestId = 164 -17:28:29.397 [nacos-grpc-client-executor-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Ack server push request, request = NotifySubscriberRequest, requestId = 164 -17:28:29.582 [nacos-grpc-client-executor-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Receive server push request, request = NotifySubscriberRequest, requestId = 165 -17:28:29.583 [nacos-grpc-client-executor-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Ack server push request, request = NotifySubscriberRequest, requestId = 165 -17:28:31.792 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -17:28:31.837 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 23.051 seconds (JVM running for 25.445) -17:28:31.847 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -17:28:31.848 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -17:28:31.853 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -17:28:32.395 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Receive server push request, request = NotifySubscriberRequest, requestId = 166 -17:28:32.401 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8d18cb4-2248-43e2-b135-16601a489de8] Ack server push request, request = NotifySubscriberRequest, requestId = 166 -17:29:42.831 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:29:42.955 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:29:43.319 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:29:43.319 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@24a9d529[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:29:43.320 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195708761_192.168.110.85_50108 -17:29:43.327 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@8bf6322[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 47] -17:29:59.245 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:30:02.486 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0 -17:30:02.567 [main] INFO o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values -17:30:02.619 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -17:30:02.637 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -17:30:02.923 [main] INFO o.r.Reflections - [scan,232] - Reflections took 282 ms to scan 235 urls, producing 0 keys and 0 values -17:30:02.937 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:30:02.957 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -17:30:02.975 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:30:03.179 [main] INFO o.r.Reflections - [scan,232] - Reflections took 201 ms to scan 235 urls, producing 0 keys and 0 values -17:30:03.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:30:03.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/165850513 -17:30:03.183 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/105194717 -17:30:03.184 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:30:03.186 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:30:03.198 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:30:09.953 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:30:12.123 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195811908_192.168.110.85_50222 -17:30:12.126 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:30:12.125 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Notify connected event to listeners. -17:30:12.129 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [47a3f0d9-9353-4ab7-ae4b-7aaf8a941a05_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/884502914 -17:30:12.468 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:30:25.587 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -17:30:26.475 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -17:30:28.954 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0 -17:30:28.954 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:30:28.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/165850513 -17:30:28.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/105194717 -17:30:28.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:30:28.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:30:28.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:30:29.071 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195828997_192.168.110.85_50228 -17:30:29.072 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Notify connected event to listeners. -17:30:29.072 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:30:29.072 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6947dc6e-0c24-430f-ace6-4fdb61c98c87_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/884502914 -17:30:29.340 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7fff7983-6ec5-46b4-a928-e34bba039ea0 -17:30:29.340 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] RpcClient init label, labels = {module=naming, source=sdk} -17:30:29.343 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:30:29.344 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:30:29.345 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:30:29.346 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:30:29.464 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195829385_192.168.110.85_50229 -17:30:29.464 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Notify connected event to listeners. -17:30:29.464 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:30:29.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/884502914 -17:30:30.141 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Receive server push request, request = NotifySubscriberRequest, requestId = 167 -17:30:30.141 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Ack server push request, request = NotifySubscriberRequest, requestId = 167 -17:30:30.157 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Receive server push request, request = NotifySubscriberRequest, requestId = 168 -17:30:30.158 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Ack server push request, request = NotifySubscriberRequest, requestId = 168 -17:30:32.673 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -17:30:32.729 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 35.564 seconds (JVM running for 38.621) -17:30:32.741 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -17:30:32.741 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -17:30:32.745 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -17:30:33.188 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Receive server push request, request = NotifySubscriberRequest, requestId = 169 -17:30:33.191 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Ack server push request, request = NotifySubscriberRequest, requestId = 169 -17:30:33.323 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:30:33.342 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:30:33.888 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Receive server push request, request = NotifySubscriberRequest, requestId = 170 -17:30:33.890 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7fff7983-6ec5-46b4-a928-e34bba039ea0] Ack server push request, request = NotifySubscriberRequest, requestId = 170 -17:30:34.235 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:30:34.235 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3132867b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:30:34.235 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195829385_192.168.110.85_50229 -17:30:34.236 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4662dca7[Running, pool size = 30, active threads = 0, queued tasks = 0, completed tasks = 30] -17:32:01.205 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:32:03.334 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0 -17:32:03.418 [main] INFO o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values -17:32:03.465 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -17:32:03.483 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -17:32:03.754 [main] INFO o.r.Reflections - [scan,232] - Reflections took 266 ms to scan 235 urls, producing 0 keys and 0 values -17:32:03.768 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:32:03.787 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -17:32:03.804 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -17:32:04.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 216 ms to scan 235 urls, producing 0 keys and 0 values -17:32:04.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:32:04.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/378327915 -17:32:04.031 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/227381657 -17:32:04.032 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:32:04.033 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:32:04.047 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:32:07.814 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195927620_192.168.110.85_50298 -17:32:07.815 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Notify connected event to listeners. -17:32:07.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:32:07.818 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/785340693 -17:32:07.940 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:32:22.085 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -17:32:23.802 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -17:32:26.688 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1a917866-e518-45f0-bc71-1ae9225cb32b_config-0 -17:32:26.689 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:32:26.689 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/378327915 -17:32:26.689 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/227381657 -17:32:26.689 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:32:26.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:32:26.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:32:26.821 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195946738_192.168.110.85_50305 -17:32:26.822 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Notify connected event to listeners. -17:32:26.823 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:32:26.824 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/785340693 -17:32:27.084 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3a3a51b3-d760-440c-9b9d-572ac6343eed -17:32:27.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] RpcClient init label, labels = {module=naming, source=sdk} -17:32:27.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:32:27.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:32:27.090 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:32:27.091 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:32:27.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723195947130_192.168.110.85_50307 -17:32:27.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:32:27.214 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Notify connected event to listeners. -17:32:27.214 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/785340693 -17:32:27.830 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 171 -17:32:27.830 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 171 -17:32:27.918 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 172 -17:32:27.919 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 172 -17:32:30.108 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -17:32:30.158 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 30.929 seconds (JVM running for 33.422) -17:32:30.170 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -17:32:30.173 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -17:32:30.174 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -17:32:30.637 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 173 -17:32:30.638 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 173 -17:32:52.574 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:33:26.761 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:34:35.919 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = ClientDetectionRequest, requestId = 174 -17:34:35.920 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = ClientDetectionRequest, requestId = 174 -17:34:35.932 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 176 -17:34:35.932 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 176 -17:34:35.932 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 175 -17:34:35.932 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 175 -17:34:35.935 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Server healthy check fail, currentConnection = 1723195927620_192.168.110.85_50298 -17:34:35.935 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Server healthy check fail, currentConnection = 1723195946738_192.168.110.85_50305 -17:34:35.936 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Server healthy check fail, currentConnection = 1723195947130_192.168.110.85_50307 -17:34:35.937 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:34:35.940 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:34:35.941 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:34:36.080 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Success to connect a server [192.168.110.169:8848], connectionId = 1723196076000_192.168.110.85_50361 -17:34:36.080 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723195947130_192.168.110.85_50307 -17:34:36.080 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195947130_192.168.110.85_50307 -17:34:36.086 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Notify disconnected event to listeners -17:34:36.088 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Notify connected event to listeners. -17:34:36.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723196076000_192.168.110.85_50363 -17:34:36.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723196076001_192.168.110.85_50362 -17:34:36.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723195946738_192.168.110.85_50305 -17:34:36.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723195927620_192.168.110.85_50298 -17:34:36.096 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195946738_192.168.110.85_50305 -17:34:36.096 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723195927620_192.168.110.85_50298 -17:34:36.096 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Notify disconnected event to listeners -17:34:36.096 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Notify disconnected event to listeners -17:34:36.097 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cdc7316-55de-4d63-bfa7-b29c15393e90_config-0] Notify connected event to listeners. -17:34:36.097 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1a917866-e518-45f0-bc71-1ae9225cb32b_config-0] Notify connected event to listeners. -17:34:39.538 [nacos-grpc-client-executor-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 177 -17:34:39.539 [nacos-grpc-client-executor-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 177 -17:34:39.542 [nacos-grpc-client-executor-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 178 -17:34:39.544 [nacos-grpc-client-executor-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 178 -17:34:45.598 [nacos-grpc-client-executor-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 179 -17:34:45.598 [nacos-grpc-client-executor-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 179 -17:34:53.925 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:35:09.855 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:35:33.271 [nacos-grpc-client-executor-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 180 -17:35:33.272 [nacos-grpc-client-executor-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 180 -17:36:08.158 [nacos-grpc-client-executor-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Receive server push request, request = NotifySubscriberRequest, requestId = 183 -17:36:08.159 [nacos-grpc-client-executor-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3a3a51b3-d760-440c-9b9d-572ac6343eed] Ack server push request, request = NotifySubscriberRequest, requestId = 183 -17:36:23.780 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:36:33.129 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:36:57.741 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "account": "string", - "address": "string", - "code": "string", - "createTime": "2024-08-09T09:29:04.887Z", - "delFlag": true, - "id": 0, - "logoUrl": "string", - "name": "string", - "password": "string", - "permissionRemarks": "string", - "phoneOne": "string", - "phoneTwo": "string", - "rate": 0, - "remark": "string", - "roleId": 0, - "roleName": "string" -} -17:39:01.540 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -17:39:01.544 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -17:39:01.881 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -17:39:01.882 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3c87cadb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:39:01.884 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723196076000_192.168.110.85_50361 -17:39:01.885 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@84cceb5[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 122] diff --git a/logs/ruoyi-gateway/info.2024-08-15.log b/logs/ruoyi-gateway/info.2024-08-15.log deleted file mode 100644 index b4d7e3c..0000000 --- a/logs/ruoyi-gateway/info.2024-08-15.log +++ /dev/null @@ -1,617 +0,0 @@ -10:59:05.756 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -10:59:06.860 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0 -10:59:06.920 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -10:59:06.955 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -10:59:06.968 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 3 keys and 10 values -10:59:07.137 [main] INFO o.r.Reflections - [scan,232] - Reflections took 166 ms to scan 235 urls, producing 0 keys and 0 values -10:59:07.149 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values -10:59:07.162 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values -10:59:07.176 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values -10:59:07.317 [main] INFO o.r.Reflections - [scan,232] - Reflections took 139 ms to scan 235 urls, producing 0 keys and 0 values -10:59:07.318 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -10:59:07.318 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/746228466 -10:59:07.319 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/281049997 -10:59:07.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -10:59:07.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -10:59:07.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -10:59:09.073 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723690749091_192.168.110.80_53694 -10:59:09.074 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Notify connected event to listeners. -10:59:09.075 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:59:09.075 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/222882200 -10:59:09.157 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -10:59:14.438 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -10:59:15.227 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -10:59:16.665 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9d9c9719-934e-40bf-a875-f38b287f7700_config-0 -10:59:16.665 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -10:59:16.665 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/746228466 -10:59:16.665 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/281049997 -10:59:16.665 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -10:59:16.666 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -10:59:16.666 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -10:59:16.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723690756878_192.168.110.80_53702 -10:59:16.802 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Notify connected event to listeners. -10:59:16.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:59:16.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9d9c9719-934e-40bf-a875-f38b287f7700_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/222882200 -10:59:16.924 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a4d2f3e0-0acb-4dfb-bffa-be543dc1542a -10:59:16.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] RpcClient init label, labels = {module=naming, source=sdk} -10:59:16.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -10:59:16.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -10:59:16.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -10:59:16.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -10:59:17.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723690757130_192.168.110.80_53703 -10:59:17.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:59:17.036 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Notify connected event to listeners. -10:59:17.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/222882200 -10:59:17.595 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 3 -10:59:17.595 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 3 -10:59:17.674 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 4 -10:59:17.674 [nacos-grpc-client-executor-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 4 -10:59:18.577 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -10:59:18.626 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 13.9 seconds (JVM running for 15.484) -10:59:18.635 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -10:59:18.636 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -10:59:18.642 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -10:59:19.086 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 5 -10:59:19.086 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 5 -11:09:17.932 [nacos-grpc-client-executor-192] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 7 -11:09:17.933 [nacos-grpc-client-executor-192] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 7 -11:09:48.014 [nacos-grpc-client-executor-205] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 9 -11:09:48.015 [nacos-grpc-client-executor-205] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 9 -11:10:17.998 [nacos-grpc-client-executor-215] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 11 -11:10:17.999 [nacos-grpc-client-executor-215] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 11 -11:10:47.971 [nacos-grpc-client-executor-229] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 13 -11:10:47.974 [nacos-grpc-client-executor-229] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 13 -11:12:18.042 [nacos-grpc-client-executor-262] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 17 -11:12:18.042 [nacos-grpc-client-executor-262] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 17 -11:12:45.532 [nacos-grpc-client-executor-276] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Receive server push request, request = NotifySubscriberRequest, requestId = 18 -11:12:45.532 [nacos-grpc-client-executor-276] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a4d2f3e0-0acb-4dfb-bffa-be543dc1542a] Ack server push request, request = NotifySubscriberRequest, requestId = 18 -11:15:19.781 [nacos-grpc-client-executor-204] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 19 -11:15:19.781 [nacos-grpc-client-executor-204] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31b15c19-0850-4b4d-ab16-ffd50e1fbc34_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 19 -11:15:44.125 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:15:45.257 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d039bc29-2acd-4b4c-9256-f59215bcd968_config-0 -11:15:45.313 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -11:15:45.356 [main] INFO o.r.Reflections - [scan,232] - Reflections took 26 ms to scan 1 urls, producing 4 keys and 9 values -11:15:45.367 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -11:15:45.533 [main] INFO o.r.Reflections - [scan,232] - Reflections took 163 ms to scan 235 urls, producing 0 keys and 0 values -11:15:45.543 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -11:15:45.557 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -11:15:45.568 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 2 keys and 8 values -11:15:45.710 [main] INFO o.r.Reflections - [scan,232] - Reflections took 139 ms to scan 235 urls, producing 0 keys and 0 values -11:15:45.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:15:45.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/768795248 -11:15:45.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/1100288091 -11:15:45.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:15:45.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:15:45.724 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:15:47.483 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691747502_192.168.110.80_54470 -11:15:47.484 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Notify connected event to listeners. -11:15:47.484 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:15:47.485 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1064040618 -11:15:47.561 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:15:52.491 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -11:15:53.012 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -11:15:54.190 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 677129d2-4221-4490-b982-269f405ddbd4_config-0 -11:15:54.190 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:15:54.190 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/768795248 -11:15:54.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/1100288091 -11:15:54.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:15:54.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:15:54.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:15:54.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691754395_192.168.110.80_54474 -11:15:54.314 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Notify connected event to listeners. -11:15:54.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:15:54.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [677129d2-4221-4490-b982-269f405ddbd4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1064040618 -11:15:54.435 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 08280d7d-83da-4922-ba22-2e6836945272 -11:15:54.436 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] RpcClient init label, labels = {module=naming, source=sdk} -11:15:54.437 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:15:54.437 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:15:54.438 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:15:54.438 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:15:54.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691754647_192.168.110.80_54475 -11:15:54.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:15:54.552 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Notify connected event to listeners. -11:15:54.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1064040618 -11:15:55.124 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 20 -11:15:55.126 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 20 -11:15:55.214 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 21 -11:15:55.214 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 21 -11:15:55.216 [nacos-grpc-client-executor-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 23 -11:15:55.216 [nacos-grpc-client-executor-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 23 -11:15:55.218 [nacos-grpc-client-executor-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 22 -11:15:55.218 [nacos-grpc-client-executor-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 22 -11:15:55.222 [nacos-grpc-client-executor-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 24 -11:15:55.222 [nacos-grpc-client-executor-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 24 -11:15:55.225 [nacos-grpc-client-executor-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 25 -11:15:55.225 [nacos-grpc-client-executor-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 25 -11:15:55.227 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 26 -11:15:55.227 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 26 -11:15:55.942 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -11:15:55.977 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 12.84 seconds (JVM running for 14.145) -11:15:55.985 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -11:15:55.986 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -11:15:55.987 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -11:15:56.522 [nacos-grpc-client-executor-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 27 -11:15:56.524 [nacos-grpc-client-executor-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 27 -11:15:58.738 [nacos-grpc-client-executor-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 28 -11:15:58.738 [nacos-grpc-client-executor-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 28 -11:16:36.391 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 29 -11:16:36.391 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d039bc29-2acd-4b4c-9256-f59215bcd968_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 29 -11:18:44.683 [nacos-grpc-client-executor-125] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 30 -11:18:44.685 [nacos-grpc-client-executor-125] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 30 -11:19:01.023 [nacos-grpc-client-executor-138] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Receive server push request, request = NotifySubscriberRequest, requestId = 31 -11:19:01.025 [nacos-grpc-client-executor-138] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [08280d7d-83da-4922-ba22-2e6836945272] Ack server push request, request = NotifySubscriberRequest, requestId = 31 -11:25:33.299 [reactor-http-nio-3] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "username": "admin", - "password": "123456" -} -11:26:12.169 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{ - "username": "admin", - "password": "123456" -} -11:26:42.453 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:26:43.559 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of db63fe98-5cd9-4082-af0b-5c725d76136f_config-0 -11:26:43.619 [main] INFO o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 3 keys and 6 values -11:26:43.656 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -11:26:43.669 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -11:26:43.848 [main] INFO o.r.Reflections - [scan,232] - Reflections took 175 ms to scan 235 urls, producing 0 keys and 0 values -11:26:43.858 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -11:26:43.873 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -11:26:43.886 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values -11:26:44.033 [main] INFO o.r.Reflections - [scan,232] - Reflections took 145 ms to scan 235 urls, producing 0 keys and 0 values -11:26:44.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:26:44.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1332439166 -11:26:44.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/684407333 -11:26:44.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:26:44.037 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:26:44.047 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:26:45.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723692405800_192.168.110.80_54870 -11:26:45.779 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Notify connected event to listeners. -11:26:45.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:26:45.780 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db63fe98-5cd9-4082-af0b-5c725d76136f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1287062222 -11:26:45.857 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:26:50.700 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -11:26:51.218 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -11:26:52.401 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 15d27efc-892b-405c-8a8b-3d7563e747fb_config-0 -11:26:52.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:26:52.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1332439166 -11:26:52.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/684407333 -11:26:52.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:26:52.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:26:52.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:26:52.516 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723692412608_192.168.110.80_54873 -11:26:52.516 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:26:52.516 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Notify connected event to listeners. -11:26:52.516 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [15d27efc-892b-405c-8a8b-3d7563e747fb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1287062222 -11:26:52.629 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ba80bdee-eb05-4115-942f-d4fce1f80cce -11:26:52.629 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] RpcClient init label, labels = {module=naming, source=sdk} -11:26:52.631 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:26:52.631 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:26:52.632 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:26:52.632 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:26:52.742 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723692412837_192.168.110.80_54874 -11:26:52.742 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:26:52.742 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Notify connected event to listeners. -11:26:52.742 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1287062222 -11:26:53.326 [nacos-grpc-client-executor-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 33 -11:26:53.328 [nacos-grpc-client-executor-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 33 -11:26:53.415 [nacos-grpc-client-executor-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 35 -11:26:53.416 [nacos-grpc-client-executor-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 35 -11:26:53.418 [nacos-grpc-client-executor-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 34 -11:26:53.418 [nacos-grpc-client-executor-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 34 -11:26:53.420 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 36 -11:26:53.420 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 36 -11:26:53.424 [nacos-grpc-client-executor-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 37 -11:26:53.424 [nacos-grpc-client-executor-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 37 -11:26:53.426 [nacos-grpc-client-executor-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 38 -11:26:53.426 [nacos-grpc-client-executor-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 38 -11:26:53.428 [nacos-grpc-client-executor-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 39 -11:26:53.428 [nacos-grpc-client-executor-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 39 -11:26:54.136 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -11:26:54.169 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 12.727 seconds (JVM running for 14.0) -11:26:54.179 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -11:26:54.181 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -11:26:54.182 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -11:26:54.724 [nacos-grpc-client-executor-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Receive server push request, request = NotifySubscriberRequest, requestId = 40 -11:26:54.726 [nacos-grpc-client-executor-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba80bdee-eb05-4115-942f-d4fce1f80cce] Ack server push request, request = NotifySubscriberRequest, requestId = 40 -14:37:02.722 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:37:03.826 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0 -14:37:03.882 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -14:37:03.922 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 4 keys and 9 values -14:37:03.934 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -14:37:04.097 [main] INFO o.r.Reflections - [scan,232] - Reflections took 160 ms to scan 235 urls, producing 0 keys and 0 values -14:37:04.108 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -14:37:04.122 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -14:37:04.135 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values -14:37:04.274 [main] INFO o.r.Reflections - [scan,232] - Reflections took 137 ms to scan 235 urls, producing 0 keys and 0 values -14:37:04.275 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:37:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/746228466 -14:37:04.276 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/281049997 -14:37:04.278 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:37:04.279 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:37:04.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:37:06.029 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723703826070_192.168.110.80_57338 -14:37:06.030 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Notify connected event to listeners. -14:37:06.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:37:06.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/222882200 -14:37:06.108 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:37:10.955 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:37:11.480 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:37:12.659 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1342d5bd-e886-48ed-966c-867221958f30_config-0 -14:37:12.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:37:12.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/746228466 -14:37:12.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/281049997 -14:37:12.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:37:12.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:37:12.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:37:12.784 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723703832886_192.168.110.80_57341 -14:37:12.784 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:37:12.784 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Notify connected event to listeners. -14:37:12.784 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/222882200 -14:37:12.900 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ebad31e1-9183-4c3e-beaf-33932fb46d36 -14:37:12.900 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] RpcClient init label, labels = {module=naming, source=sdk} -14:37:12.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:37:12.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:37:12.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:37:12.903 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:37:13.017 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723703833130_192.168.110.80_57342 -14:37:13.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:37:13.020 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Notify connected event to listeners. -14:37:13.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/222882200 -14:37:13.622 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 41 -14:37:13.624 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 41 -14:37:13.710 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 42 -14:37:13.710 [nacos-grpc-client-executor-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 42 -14:37:13.712 [nacos-grpc-client-executor-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 43 -14:37:13.712 [nacos-grpc-client-executor-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 43 -14:37:13.714 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 44 -14:37:13.715 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 44 -14:37:13.719 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 45 -14:37:13.719 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 45 -14:37:13.721 [nacos-grpc-client-executor-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 46 -14:37:13.722 [nacos-grpc-client-executor-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 46 -14:37:13.723 [nacos-grpc-client-executor-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 47 -14:37:13.724 [nacos-grpc-client-executor-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 47 -14:37:14.418 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -14:37:14.449 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 12.725 seconds (JVM running for 14.046) -14:37:14.456 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:37:14.457 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:37:14.458 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:37:15.029 [nacos-grpc-client-executor-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = NotifySubscriberRequest, requestId = 48 -14:37:15.032 [nacos-grpc-client-executor-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = NotifySubscriberRequest, requestId = 48 -14:38:17.660 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:38:44.842 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 49 -14:38:44.842 [nacos-grpc-client-executor-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Receive server push request, request = ClientDetectionRequest, requestId = 51 -14:38:44.842 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 50 -14:38:44.843 [nacos-grpc-client-executor-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebad31e1-9183-4c3e-beaf-33932fb46d36] Ack server push request, request = ClientDetectionRequest, requestId = 51 -14:38:44.844 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 50 -14:38:44.846 [nacos-grpc-client-executor-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 49 -14:38:44.859 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Server healthy check fail, currentConnection = 1723703832886_192.168.110.80_57341 -14:38:44.860 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:38:44.864 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Server healthy check fail, currentConnection = 1723703826070_192.168.110.80_57338 -14:38:44.864 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:38:44.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723703925113_192.168.110.80_57373 -14:38:44.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723703925109_192.168.110.80_57374 -14:38:44.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723703832886_192.168.110.80_57341 -14:38:44.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723703826070_192.168.110.80_57338 -14:38:44.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723703832886_192.168.110.80_57341 -14:38:44.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723703826070_192.168.110.80_57338 -14:38:45.001 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:38:45.001 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Notify disconnected event to listeners -14:38:45.001 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Notify disconnected event to listeners -14:38:45.001 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:38:45.002 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Notify connected event to listeners. -14:38:45.002 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Notify connected event to listeners. -14:38:45.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723703925230_192.168.110.80_57376 -14:38:45.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723703925231_192.168.110.80_57375 -14:38:45.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723703925109_192.168.110.80_57374 -14:38:45.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723703925113_192.168.110.80_57373 -14:38:45.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723703925109_192.168.110.80_57374 -14:38:45.122 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723703925113_192.168.110.80_57373 -14:38:45.124 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Notify disconnected event to listeners -14:38:45.124 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Notify connected event to listeners. -14:38:45.124 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Notify disconnected event to listeners -14:38:45.125 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da1b89ab-610c-4fb4-a48f-f8b4453c1d3b_config-0] Notify connected event to listeners. -14:38:45.132 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1342d5bd-e886-48ed-966c-867221958f30_config-0] Server check success, currentServer is 192.168.110.169:8848 -14:40:32.688 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:40:33.799 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0 -14:40:33.859 [main] INFO o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 3 keys and 6 values -14:40:33.901 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values -14:40:33.915 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -14:40:34.087 [main] INFO o.r.Reflections - [scan,232] - Reflections took 169 ms to scan 235 urls, producing 0 keys and 0 values -14:40:34.097 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -14:40:34.113 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -14:40:34.125 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -14:40:34.277 [main] INFO o.r.Reflections - [scan,232] - Reflections took 149 ms to scan 235 urls, producing 0 keys and 0 values -14:40:34.278 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:40:34.279 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/555943503 -14:40:34.279 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/1332439166 -14:40:34.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:40:34.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:40:34.288 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:40:36.072 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704036108_192.168.110.80_57438 -14:40:36.075 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Notify connected event to listeners. -14:40:36.075 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:40:36.076 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1287062222 -14:40:36.152 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:40:41.036 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:40:41.556 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:40:42.737 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0 -14:40:42.738 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:40:42.738 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/555943503 -14:40:42.738 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/1332439166 -14:40:42.738 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:40:42.738 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:40:42.739 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:40:42.862 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704042966_192.168.110.80_57441 -14:40:42.862 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:40:42.862 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Notify connected event to listeners. -14:40:42.862 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1287062222 -14:40:42.979 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4 -14:40:42.979 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] RpcClient init label, labels = {module=naming, source=sdk} -14:40:42.981 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:40:42.981 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:40:42.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:40:42.983 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:40:43.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704043208_192.168.110.80_57442 -14:40:43.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:40:43.094 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Notify connected event to listeners. -14:40:43.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1287062222 -14:40:43.650 [nacos-grpc-client-executor-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 52 -14:40:43.651 [nacos-grpc-client-executor-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 52 -14:40:43.736 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 53 -14:40:43.737 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 53 -14:40:43.738 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 54 -14:40:43.739 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 54 -14:40:43.741 [nacos-grpc-client-executor-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 55 -14:40:43.741 [nacos-grpc-client-executor-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 55 -14:40:43.746 [nacos-grpc-client-executor-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 56 -14:40:43.747 [nacos-grpc-client-executor-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 56 -14:40:43.748 [nacos-grpc-client-executor-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 57 -14:40:43.749 [nacos-grpc-client-executor-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 57 -14:40:43.752 [nacos-grpc-client-executor-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 58 -14:40:43.752 [nacos-grpc-client-executor-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 58 -14:40:44.484 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -14:40:44.516 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 12.829 seconds (JVM running for 14.146) -14:40:44.524 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:40:44.525 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:40:44.526 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:40:45.053 [nacos-grpc-client-executor-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 59 -14:40:45.059 [nacos-grpc-client-executor-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 59 -14:41:00.572 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:42:02.016 [nacos-grpc-client-executor-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = ClientDetectionRequest, requestId = 61 -14:42:02.016 [nacos-grpc-client-executor-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 60 -14:42:02.016 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 62 -14:42:02.074 [nacos-grpc-client-executor-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = ClientDetectionRequest, requestId = 61 -14:42:02.074 [nacos-grpc-client-executor-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 60 -14:42:02.074 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 62 -14:42:02.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Server healthy check fail, currentConnection = 1723704042966_192.168.110.80_57441 -14:42:02.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:42:02.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Server healthy check fail, currentConnection = 1723704043208_192.168.110.80_57442 -14:42:02.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:42:02.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Server healthy check fail, currentConnection = 1723704036108_192.168.110.80_57438 -14:42:02.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:42:02.225 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Success to connect a server [192.168.110.169:8848], connectionId = 1723704122323_192.168.110.80_57467 -14:42:02.225 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723704122323_192.168.110.80_57469 -14:42:02.226 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723704043208_192.168.110.80_57442 -14:42:02.225 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723704122323_192.168.110.80_57468 -14:42:02.227 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723704043208_192.168.110.80_57442 -14:42:02.227 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723704036108_192.168.110.80_57438 -14:42:02.227 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723704042966_192.168.110.80_57441 -14:42:02.228 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723704036108_192.168.110.80_57438 -14:42:02.228 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723704042966_192.168.110.80_57441 -14:42:02.241 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:42:02.242 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Notify disconnected event to listeners -14:42:02.242 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:42:02.243 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Notify disconnected event to listeners -14:42:02.241 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Try to reconnect to a new server, server is not appointed, will choose a random server. -14:42:02.243 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Notify connected event to listeners. -14:42:02.243 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Notify connected event to listeners. -14:42:02.243 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Notify disconnected event to listeners -14:42:02.245 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Notify connected event to listeners. -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723704122476_192.168.110.80_57472 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723704122473_192.168.110.80_57470 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723704122323_192.168.110.80_57469 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Success to connect a server [192.168.110.169:8848], connectionId = 1723704122475_192.168.110.80_57471 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723704122323_192.168.110.80_57468 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723704122323_192.168.110.80_57469 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723704122323_192.168.110.80_57467 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723704122323_192.168.110.80_57468 -14:42:02.365 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723704122323_192.168.110.80_57467 -14:42:02.368 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Notify disconnected event to listeners -14:42:02.369 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Notify disconnected event to listeners -14:42:02.369 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a0d12c68-7d4f-4e37-bdc2-28cf75d3c796_config-0] Notify connected event to listeners. -14:42:02.369 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Notify disconnected event to listeners -14:42:02.370 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Notify connected event to listeners. -14:42:02.370 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Notify connected event to listeners. -14:42:02.373 [nacos-grpc-client-executor-72] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723704122323_192.168.110.80_57467]Ignore complete event,isRunning:true,isAbandon=true -14:42:02.374 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723704122323_192.168.110.80_57469]Ignore complete event,isRunning:true,isAbandon=true -14:42:02.375 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Server check success, currentServer is 192.168.110.169:8848 -14:42:02.375 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4aeed0bb-08a5-43da-856d-b63704b8ff7b_config-0] Server check success, currentServer is 192.168.110.169:8848 -14:42:05.601 [nacos-grpc-client-executor-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 63 -14:42:05.601 [nacos-grpc-client-executor-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 63 -14:42:05.603 [nacos-grpc-client-executor-100] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 64 -14:42:05.603 [nacos-grpc-client-executor-100] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 64 -14:42:05.604 [nacos-grpc-client-executor-101] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 65 -14:42:05.604 [nacos-grpc-client-executor-101] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 65 -14:42:05.606 [nacos-grpc-client-executor-102] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 66 -14:42:05.607 [nacos-grpc-client-executor-102] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 66 -14:42:05.609 [nacos-grpc-client-executor-103] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 67 -14:42:05.610 [nacos-grpc-client-executor-103] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 67 -14:42:05.612 [nacos-grpc-client-executor-104] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 68 -14:42:05.612 [nacos-grpc-client-executor-104] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 68 -14:42:05.614 [nacos-grpc-client-executor-105] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Receive server push request, request = NotifySubscriberRequest, requestId = 69 -14:42:05.614 [nacos-grpc-client-executor-105] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b95ffcf-eb0f-45c8-a15d-0ed10c6e77e4] Ack server push request, request = NotifySubscriberRequest, requestId = 69 -14:42:48.542 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:47:43.657 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:51:31.584 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:52:19.765 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:52:41.798 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:53:02.382 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:53:08.003 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:53:14.318 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:53:16.194 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:53:17.151 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:54:05.638 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123456"} -14:54:08.251 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123456"} -14:55:25.438 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:55:26.532 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 56c8d134-9319-4caa-82ab-4e72d65376d2_config-0 -14:55:26.588 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -14:55:26.628 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 4 keys and 9 values -14:55:26.641 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -14:55:26.805 [main] INFO o.r.Reflections - [scan,232] - Reflections took 161 ms to scan 235 urls, producing 0 keys and 0 values -14:55:26.816 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -14:55:26.831 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -14:55:26.844 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values -14:55:26.985 [main] INFO o.r.Reflections - [scan,232] - Reflections took 139 ms to scan 235 urls, producing 0 keys and 0 values -14:55:26.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:55:26.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1107201631 -14:55:26.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/811792884 -14:55:26.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:55:26.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:55:26.996 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:55:28.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704928773_192.168.110.80_57686 -14:55:28.731 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Notify connected event to listeners. -14:55:28.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:55:28.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [56c8d134-9319-4caa-82ab-4e72d65376d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1620643420 -14:55:28.806 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:55:33.726 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:55:34.250 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:55:35.416 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0 -14:55:35.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:55:35.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1107201631 -14:55:35.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/811792884 -14:55:35.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:55:35.417 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:55:35.418 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:55:35.534 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704935644_192.168.110.80_57690 -14:55:35.534 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:55:35.534 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Notify connected event to listeners. -14:55:35.534 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [535870ea-d4d6-46cc-a16c-b5374a2aa0a4_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1620643420 -14:55:35.648 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 32b330a1-0175-4677-9d01-8ab000c23ad5 -14:55:35.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] RpcClient init label, labels = {module=naming, source=sdk} -14:55:35.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:55:35.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:55:35.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:55:35.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:55:35.767 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704935879_192.168.110.80_57691 -14:55:35.767 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:55:35.767 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Notify connected event to listeners. -14:55:35.767 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/1620643420 -14:55:36.351 [nacos-grpc-client-executor-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 71 -14:55:36.352 [nacos-grpc-client-executor-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 71 -14:55:36.438 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 72 -14:55:36.439 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 72 -14:55:36.441 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 73 -14:55:36.441 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 73 -14:55:36.443 [nacos-grpc-client-executor-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 74 -14:55:36.443 [nacos-grpc-client-executor-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 74 -14:55:36.447 [nacos-grpc-client-executor-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 75 -14:55:36.448 [nacos-grpc-client-executor-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 75 -14:55:36.451 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 76 -14:55:36.451 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 76 -14:55:36.452 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 77 -14:55:36.452 [nacos-grpc-client-executor-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 77 -14:55:37.184 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -14:55:37.221 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 12.815 seconds (JVM running for 14.155) -14:55:37.228 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:55:37.229 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:55:37.229 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:55:37.749 [nacos-grpc-client-executor-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Receive server push request, request = NotifySubscriberRequest, requestId = 78 -14:55:37.751 [nacos-grpc-client-executor-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [32b330a1-0175-4677-9d01-8ab000c23ad5] Ack server push request, request = NotifySubscriberRequest, requestId = 78 -14:55:45.298 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:55:47.651 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:20.814 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:56:21.912 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0 -14:56:21.971 [main] INFO o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 3 keys and 6 values -14:56:22.013 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 4 keys and 9 values -14:56:22.027 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -14:56:22.198 [main] INFO o.r.Reflections - [scan,232] - Reflections took 168 ms to scan 235 urls, producing 0 keys and 0 values -14:56:22.207 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -14:56:22.224 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -14:56:22.235 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -14:56:22.380 [main] INFO o.r.Reflections - [scan,232] - Reflections took 142 ms to scan 235 urls, producing 0 keys and 0 values -14:56:22.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:56:22.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1913386579 -14:56:22.382 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/906741317 -14:56:22.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:56:22.384 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:56:22.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:56:24.118 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704984155_192.168.110.80_57752 -14:56:24.119 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Notify connected event to listeners. -14:56:24.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:56:24.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c0bbd092-ffa7-4c92-9e9f-c740549c01cb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/361423492 -14:56:24.192 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:56:29.065 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:56:29.592 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:56:30.781 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0 -14:56:30.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:56:30.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1913386579 -14:56:30.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$344/906741317 -14:56:30.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:56:30.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:56:30.783 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:56:30.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704991009_192.168.110.80_57756 -14:56:30.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:56:30.903 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Notify connected event to listeners. -14:56:30.904 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [74554f5e-0d42-41b1-b302-d23e5b5b477e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/361423492 -14:56:31.042 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9011df87-86ff-45bc-8828-b191793ca87b -14:56:31.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] RpcClient init label, labels = {module=naming, source=sdk} -14:56:31.044 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:56:31.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:56:31.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:56:31.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:56:31.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723704991272_192.168.110.80_57757 -14:56:31.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:56:31.155 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Notify connected event to listeners. -14:56:31.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$353/361423492 -14:56:31.768 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 79 -14:56:31.770 [nacos-grpc-client-executor-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 79 -14:56:31.775 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 80 -14:56:31.775 [nacos-grpc-client-executor-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 80 -14:56:31.777 [nacos-grpc-client-executor-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 81 -14:56:31.777 [nacos-grpc-client-executor-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 81 -14:56:31.779 [nacos-grpc-client-executor-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 82 -14:56:31.779 [nacos-grpc-client-executor-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 82 -14:56:31.783 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 83 -14:56:31.784 [nacos-grpc-client-executor-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 83 -14:56:31.786 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 84 -14:56:31.786 [nacos-grpc-client-executor-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 84 -14:56:31.788 [nacos-grpc-client-executor-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 85 -14:56:31.788 [nacos-grpc-client-executor-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 85 -14:56:32.555 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.110.80:9000 register finished -14:56:32.586 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 12.793 seconds (JVM running for 14.069) -14:56:32.593 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -14:56:32.594 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -14:56:32.594 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -14:56:33.063 [nacos-grpc-client-executor-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 86 -14:56:33.064 [nacos-grpc-client-executor-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 86 -14:56:36.087 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:38.393 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:39.312 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:40.002 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:40.626 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:41.101 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:41.499 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:41.842 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:56:42.109 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"admin123"} -14:58:08.588 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:58:51.485 [nacos-grpc-client-executor-104] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 88 -14:58:51.486 [nacos-grpc-client-executor-104] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 88 -14:59:11.020 [nacos-grpc-client-executor-108] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 91 -14:59:11.022 [nacos-grpc-client-executor-108] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 91 -14:59:46.519 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -15:00:20.792 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -15:00:24.061 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -15:02:22.295 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -17:25:05.322 [nacos-grpc-client-executor-3267] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 92 -17:25:05.324 [nacos-grpc-client-executor-3267] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 92 -17:26:45.882 [nacos-grpc-client-executor-3306] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 94 -17:26:45.883 [nacos-grpc-client-executor-3306] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 94 -17:27:39.576 [nacos-grpc-client-executor-3325] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 96 -17:27:39.578 [nacos-grpc-client-executor-3325] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 96 -17:28:00.721 [nacos-grpc-client-executor-3330] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 97 -17:28:00.722 [nacos-grpc-client-executor-3330] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 97 -17:28:39.311 [nacos-grpc-client-executor-3350] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 99 -17:28:39.312 [nacos-grpc-client-executor-3350] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 99 -18:49:35.847 [nacos-grpc-client-executor-5125] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 101 -18:49:35.848 [nacos-grpc-client-executor-5125] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 101 diff --git a/logs/ruoyi-gateway/info.2024-08-16.log b/logs/ruoyi-gateway/info.2024-08-16.log deleted file mode 100644 index d05a05b..0000000 --- a/logs/ruoyi-gateway/info.2024-08-16.log +++ /dev/null @@ -1,123 +0,0 @@ -13:38:34.656 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -13:39:08.271 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:02:54.370 [reactor-http-nio-1] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:10:27.393 [nacos-grpc-client-executor-31296] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 102 -14:10:27.393 [nacos-grpc-client-executor-31296] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 102 -14:10:29.600 [nacos-grpc-client-executor-31301] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 103 -14:10:29.600 [nacos-grpc-client-executor-31301] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 103 -14:11:19.723 [nacos-grpc-client-executor-31330] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 104 -14:11:19.723 [nacos-grpc-client-executor-31330] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 104 -14:11:25.562 [nacos-grpc-client-executor-31338] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 105 -14:11:25.562 [nacos-grpc-client-executor-31338] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 105 -14:25:20.516 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:25:41.181 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:25:51.351 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:26:47.275 [nacos-grpc-client-executor-31711] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 106 -14:26:47.277 [nacos-grpc-client-executor-31711] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 106 -14:26:48.386 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:26:52.075 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:27:05.511 [nacos-grpc-client-executor-31726] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 108 -14:27:05.512 [nacos-grpc-client-executor-31726] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 108 -14:27:32.717 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:27:42.941 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:28:30.150 [nacos-grpc-client-executor-31758] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 110 -14:28:30.156 [nacos-grpc-client-executor-31758] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 110 -14:28:45.010 [nacos-grpc-client-executor-31761] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 112 -14:28:45.011 [nacos-grpc-client-executor-31761] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 112 -14:29:58.460 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:31:05.799 [nacos-grpc-client-executor-31819] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 114 -14:31:05.800 [nacos-grpc-client-executor-31819] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 114 -14:31:31.982 [nacos-grpc-client-executor-31828] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 116 -14:31:31.984 [nacos-grpc-client-executor-31828] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 116 -14:31:45.877 [nacos-grpc-client-executor-31831] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 117 -14:31:45.878 [nacos-grpc-client-executor-31831] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 117 -14:32:07.811 [nacos-grpc-client-executor-31844] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 119 -14:32:07.812 [nacos-grpc-client-executor-31844] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 119 -14:32:10.737 [nacos-grpc-client-executor-31845] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 120 -14:32:10.739 [nacos-grpc-client-executor-31845] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 120 -14:32:30.443 [nacos-grpc-client-executor-31853] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 122 -14:32:30.448 [nacos-grpc-client-executor-31853] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 122 -14:37:37.162 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:38:13.993 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:42:42.726 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:44:16.603 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:45:53.279 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -14:58:35.976 [reactor-http-nio-3] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -15:01:12.412 [nacos-grpc-client-executor-32547] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 125 -15:01:12.415 [nacos-grpc-client-executor-32547] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 125 -15:01:38.670 [nacos-grpc-client-executor-32556] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 129 -15:01:38.672 [nacos-grpc-client-executor-32556] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 129 -15:03:41.517 [nacos-grpc-client-executor-32602] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 132 -15:03:41.523 [nacos-grpc-client-executor-32602] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 132 -15:04:00.657 [nacos-grpc-client-executor-32614] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 136 -15:04:00.659 [nacos-grpc-client-executor-32614] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 136 -15:12:26.296 [nacos-grpc-client-executor-32799] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 139 -15:12:26.298 [nacos-grpc-client-executor-32799] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 139 -15:12:45.240 [nacos-grpc-client-executor-32804] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 142 -15:12:45.243 [nacos-grpc-client-executor-32804] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 142 -15:13:58.245 [nacos-grpc-client-executor-32836] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 146 -15:13:58.248 [nacos-grpc-client-executor-32836] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 146 -15:14:17.975 [nacos-grpc-client-executor-32840] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 150 -15:14:17.976 [nacos-grpc-client-executor-32840] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 150 -15:16:04.442 [nacos-grpc-client-executor-32883] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 153 -15:16:04.449 [nacos-grpc-client-executor-32883] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 153 -15:16:23.388 [nacos-grpc-client-executor-32890] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 157 -15:16:23.391 [nacos-grpc-client-executor-32890] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 157 -15:33:33.767 [nacos-grpc-client-executor-33309] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 159 -15:33:33.769 [nacos-grpc-client-executor-33309] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 159 -15:36:17.513 [nacos-grpc-client-executor-33377] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 162 -15:36:17.514 [nacos-grpc-client-executor-33377] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 162 -15:36:25.973 [nacos-grpc-client-executor-33384] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 163 -15:36:25.974 [nacos-grpc-client-executor-33384] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 163 -15:36:45.529 [nacos-grpc-client-executor-33390] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 165 -15:36:45.530 [nacos-grpc-client-executor-33390] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 165 -15:36:52.573 [nacos-grpc-client-executor-33395] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 166 -15:36:52.574 [nacos-grpc-client-executor-33395] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 166 -15:38:26.462 [nacos-grpc-client-executor-33437] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 171 -15:38:26.464 [nacos-grpc-client-executor-33437] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 171 -15:38:48.000 [nacos-grpc-client-executor-33443] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 174 -15:38:48.001 [nacos-grpc-client-executor-33443] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 174 -15:42:53.574 [nacos-grpc-client-executor-33542] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 179 -15:42:53.576 [nacos-grpc-client-executor-33542] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 179 -15:43:03.348 [nacos-grpc-client-executor-33547] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 181 -15:43:03.351 [nacos-grpc-client-executor-33547] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 181 -15:43:22.262 [nacos-grpc-client-executor-33551] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Receive server push request, request = NotifySubscriberRequest, requestId = 183 -15:43:22.263 [nacos-grpc-client-executor-33551] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9011df87-86ff-45bc-8828-b191793ca87b] Ack server push request, request = NotifySubscriberRequest, requestId = 183 -16:14:09.281 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:15:29.177 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:17:26.591 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:18:03.765 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:19:18.038 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:22:32.844 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:26:14.166 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:28:36.525 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:28:57.512 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:34:01.007 [reactor-http-nio-1] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:41:13.188 [reactor-http-nio-3] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:45:46.118 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -16:59:38.416 [reactor-http-nio-1] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -17:00:05.033 [reactor-http-nio-1] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"credit":{"num1":"2"},"chargeCredit":{"num1":"1"},"inviteUsersToEarnPoints":{"num1":"7"},"addVehiclesEarnsPoints":{"num1":"3","num2":"4","num3":"5","num4":"6"},"signInForPoints":{"num1":"8","num2":[{"num1":"11","num2":"12"},{"num1":"21","num2":"22"}]}} -17:03:02.190 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -17:03:20.415 [reactor-http-nio-5] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"credit":{"num1":"2"},"chargeCredit":{"num1":"1"},"inviteUsersToEarnPoints":{"num1":"6"},"addVehiclesEarnsPoints":{"num1":"3","num2":"4","num3":"5","num4":"6"},"signInForPoints":{"num1":"6","num2":[{"num1":"1","num2":"1"}]}} -17:21:05.181 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:23:25.525 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:25:13.076 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:25:18.095 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:26:56.991 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"username":"admin","password":"123456"} -17:27:47.601 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:27:55.596 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:29:45.603 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:30:02.596 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:30:04.404 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:34:36.003 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:39:41.608 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:42:28.616 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:43:08.618 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:44:13.606 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:44:58.610 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:45:23.603 [reactor-http-nio-2] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:55:54.570 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:56:01.459 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -17:56:51.531 [reactor-http-nio-6] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -18:33:46.099 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} -18:36:58.661 [reactor-http-nio-4] INFO c.r.g.f.SignFilter - [lambda$authSign$1,102] - 请求参数:{"pageSize":10,"pageCurr":1} diff --git a/logs/ruoyi-gateway/info.log b/logs/ruoyi-gateway/info.log deleted file mode 100644 index 97adef7..0000000 --- a/logs/ruoyi-gateway/info.log +++ /dev/null @@ -1,126 +0,0 @@ -15:11:55.124 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:11:58.486 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0 -15:11:58.675 [main] INFO o.r.Reflections - [scan,232] - Reflections took 135 ms to scan 1 urls, producing 3 keys and 6 values -15:11:58.731 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -15:11:58.754 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values -15:11:59.119 [main] INFO o.r.Reflections - [scan,232] - Reflections took 360 ms to scan 235 urls, producing 0 keys and 0 values -15:11:59.137 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -15:11:59.162 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 1 keys and 7 values -15:11:59.189 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 2 keys and 8 values -15:11:59.420 [main] INFO o.r.Reflections - [scan,232] - Reflections took 228 ms to scan 235 urls, producing 0 keys and 0 values -15:11:59.451 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:11:59.452 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$337/494266287 -15:11:59.453 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1338065644 -15:11:59.455 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:11:59.456 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:11:59.474 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:12:05.137 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723533125204_192.168.110.85_56996 -15:12:05.138 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Notify connected event to listeners. -15:12:05.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:12:05.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cffcc37a-2c93-4e7a-bc57-3c14191fbbc0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1536465406 -15:12:05.434 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:12:19.201 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:12:20.853 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:12:23.840 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0 -15:12:23.841 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:12:23.842 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$337/494266287 -15:12:23.842 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1338065644 -15:12:23.843 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:12:23.843 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:12:23.843 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:12:23.983 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723533144388_192.168.110.85_57015 -15:12:23.984 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Notify connected event to listeners. -15:12:23.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:12:23.985 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [788f3fa0-6a85-4b29-adc7-fad085468b8a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1536465406 -15:12:24.309 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e3ce6b85-275b-447d-b7e4-7f8ef363c884 -15:12:24.309 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] RpcClient init label, labels = {module=naming, source=sdk} -15:12:24.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:12:24.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:12:24.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:12:24.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:12:24.442 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723533144849_192.168.110.85_57016 -15:12:24.442 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:12:24.442 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Notify connected event to listeners. -15:12:24.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1536465406 -15:12:25.072 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Receive server push request, request = NotifySubscriberRequest, requestId = 184 -15:12:25.073 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Ack server push request, request = NotifySubscriberRequest, requestId = 184 -15:12:27.369 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -15:12:27.409 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 36.349 seconds (JVM running for 39.952) -15:12:27.418 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -15:12:27.420 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -15:12:27.421 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -15:12:27.955 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Receive server push request, request = NotifySubscriberRequest, requestId = 185 -15:12:27.955 [nacos-grpc-client-executor-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Ack server push request, request = NotifySubscriberRequest, requestId = 185 -15:13:05.492 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:13:07.132 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:13:07.132 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Receive server push request, request = NotifySubscriberRequest, requestId = 186 -15:13:07.134 [nacos-grpc-client-executor-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e3ce6b85-275b-447d-b7e4-7f8ef363c884] Ack server push request, request = NotifySubscriberRequest, requestId = 186 -15:13:07.804 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:13:07.804 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@18b7ef49[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:13:07.805 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723533144849_192.168.110.85_57016 -15:13:07.854 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7c40c8e7[Running, pool size = 6, active threads = 1, queued tasks = 0, completed tasks = 35] -15:13:07.810 [nacos-grpc-client-executor-35] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723533144849_192.168.110.85_57016]Ignore complete event,isRunning:false,isAbandon=false -16:34:20.555 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -16:34:22.463 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bacef994-58df-4080-ae18-fbd1a94db396_config-0 -16:34:22.545 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 3 keys and 6 values -16:34:22.587 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -16:34:22.606 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -16:34:22.895 [main] INFO o.r.Reflections - [scan,232] - Reflections took 285 ms to scan 235 urls, producing 0 keys and 0 values -16:34:22.913 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 5 values -16:34:22.932 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -16:34:22.950 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -16:34:23.153 [main] INFO o.r.Reflections - [scan,232] - Reflections took 199 ms to scan 235 urls, producing 0 keys and 0 values -16:34:23.157 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:34:23.158 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1143135560 -16:34:23.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/7752890 -16:34:23.160 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:34:23.162 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:34:23.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:34:25.936 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538066278_192.168.110.85_59156 -16:34:25.937 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Notify connected event to listeners. -16:34:25.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:34:25.940 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bacef994-58df-4080-ae18-fbd1a94db396_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1937209374 -16:34:26.063 [main] INFO c.r.g.RuoYiGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -16:34:34.051 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -16:34:34.845 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -16:34:37.044 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 675e234d-b019-4822-935b-6899966191ef_config-0 -16:34:37.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -16:34:37.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1143135560 -16:34:37.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/7752890 -16:34:37.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:34:37.046 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:34:37.047 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:34:37.173 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538077631_192.168.110.85_59165 -16:34:37.174 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Notify connected event to listeners. -16:34:37.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:34:37.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [675e234d-b019-4822-935b-6899966191ef_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1937209374 -16:34:37.398 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bf758fce-6ee6-4763-9f49-27a22b82291f -16:34:37.399 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] RpcClient init label, labels = {module=naming, source=sdk} -16:34:37.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:34:37.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:34:37.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:34:37.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -16:34:37.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723538077980_192.168.110.85_59166 -16:34:37.523 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:34:37.523 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Notify connected event to listeners. -16:34:37.523 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1937209374 -16:34:38.105 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Receive server push request, request = NotifySubscriberRequest, requestId = 187 -16:34:38.105 [nacos-grpc-client-executor-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Ack server push request, request = NotifySubscriberRequest, requestId = 187 -16:34:38.190 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Receive server push request, request = NotifySubscriberRequest, requestId = 188 -16:34:38.191 [nacos-grpc-client-executor-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Ack server push request, request = NotifySubscriberRequest, requestId = 188 -16:34:39.955 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-gateway 192.168.204.1:9000 register finished -16:34:39.997 [main] INFO c.r.g.RuoYiGatewayApplication - [logStarted,61] - Started RuoYiGatewayApplication in 21.155 seconds (JVM running for 23.324) -16:34:40.007 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway, group=DEFAULT_GROUP -16:34:40.008 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway.yml, group=DEFAULT_GROUP -16:34:40.010 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-gateway-dev.yml, group=DEFAULT_GROUP -16:34:40.508 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Receive server push request, request = NotifySubscriberRequest, requestId = 189 -16:34:40.509 [nacos-grpc-client-executor-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Ack server push request, request = NotifySubscriberRequest, requestId = 189 -16:41:45.341 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -16:41:45.871 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -16:41:46.180 [nacos-grpc-client-executor-143] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Receive server push request, request = NotifySubscriberRequest, requestId = 191 -16:41:46.182 [nacos-grpc-client-executor-143] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf758fce-6ee6-4763-9f49-27a22b82291f] Ack server push request, request = NotifySubscriberRequest, requestId = 191 -16:41:46.292 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -16:41:46.293 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4f3f4f94[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:41:46.293 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723538077980_192.168.110.85_59166 -16:41:46.300 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@14301e3a[Running, pool size = 9, active threads = 1, queued tasks = 0, completed tasks = 144] -16:41:46.303 [nacos-grpc-client-executor-144] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723538077980_192.168.110.85_59166]Ignore complete event,isRunning:false,isAbandon=false diff --git a/logs/ruoyi-order/error.2024-08-15.log b/logs/ruoyi-order/error.2024-08-15.log deleted file mode 100644 index e69de29..0000000 --- a/logs/ruoyi-order/error.2024-08-15.log +++ /dev/null diff --git a/logs/ruoyi-order/error.log b/logs/ruoyi-order/error.log deleted file mode 100644 index 3ceef1a..0000000 --- a/logs/ruoyi-order/error.log +++ /dev/null @@ -1,160 +0,0 @@ -15:37:40.895 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TExchangeOrderController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TExchangeOrderServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.GoodsClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.GoodsFallbackFactory found for feign client GoodsClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.order.RuoYiOrderApplication.main(RuoYiOrderApplication.java:25) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TExchangeOrderServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.GoodsClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.GoodsFallbackFactory found for feign client GoodsClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.GoodsClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.GoodsFallbackFactory found for feign client GoodsClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.GoodsFallbackFactory found for feign client GoodsClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -15:39:08.076 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TExchangeOrderController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TExchangeOrderServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.CouponClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.CouponFallbackFactory found for feign client CouponClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.order.RuoYiOrderApplication.main(RuoYiOrderApplication.java:25) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TExchangeOrderServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.CouponClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.CouponFallbackFactory found for feign client CouponClient - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.CouponClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.CouponFallbackFactory found for feign client CouponClient - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: java.lang.IllegalStateException: No fallbackFactory instance of type class com.ruoyi.other.api.factory.CouponFallbackFactory found for feign client CouponClient - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.getFromContext(SentinelFeign.java:125) - at com.alibaba.cloud.sentinel.feign.SentinelFeign$Builder$1.create(SentinelFeign.java:110) - at org.springframework.cloud.openfeign.FeignCachingInvocationHandlerFactory.create(FeignCachingInvocationHandlerFactory.java:50) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:64) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 46 common frames omitted -15:39:45.642 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Field orderEvaluateService in com.ruoyi.order.controller.TOrderEvaluateController required a bean of type 'com.ruoyi.account.api.feignClient.AppUserIntegralChangeClient' that could not be found. - -The injection point has the following annotations: - - @org.springframework.beans.factory.annotation.Autowired(required=true) - - -Action: - -Consider defining a bean of type 'com.ruoyi.account.api.feignClient.AppUserIntegralChangeClient' in your configuration. - diff --git a/logs/ruoyi-order/info.2024-08-15.log b/logs/ruoyi-order/info.2024-08-15.log deleted file mode 100644 index 4b6d899..0000000 --- a/logs/ruoyi-order/info.2024-08-15.log +++ /dev/null @@ -1,90 +0,0 @@ -11:10:07.553 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:10:08.713 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3322b07d-79c6-4b40-9126-146ac05243e7_config-0 -11:10:08.785 [main] INFO o.r.Reflections - [scan,232] - Reflections took 47 ms to scan 1 urls, producing 3 keys and 6 values -11:10:08.822 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 4 keys and 9 values -11:10:08.836 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -11:10:09.034 [main] INFO o.r.Reflections - [scan,232] - Reflections took 194 ms to scan 228 urls, producing 0 keys and 0 values -11:10:09.045 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -11:10:09.061 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -11:10:09.074 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -11:10:09.232 [main] INFO o.r.Reflections - [scan,232] - Reflections took 155 ms to scan 228 urls, producing 0 keys and 0 values -11:10:09.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:10:09.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/811792884 -11:10:09.234 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/538375433 -11:10:09.235 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:10:09.235 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:10:09.250 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:10:11.206 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691411191_192.168.110.80_54200 -11:10:11.208 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Notify connected event to listeners. -11:10:11.208 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:10:11.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3322b07d-79c6-4b40-9126-146ac05243e7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1300497562 -11:10:11.299 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:10:14.362 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -11:10:14.363 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:10:14.363 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:10:14.693 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:10:18.434 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:10:21.297 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 19228367-4587-4a49-a878-5a49f4c6ed47 -11:10:21.298 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] RpcClient init label, labels = {module=naming, source=sdk} -11:10:21.300 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:10:21.300 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:10:21.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:10:21.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:10:21.422 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691421504_192.168.110.80_54208 -11:10:21.423 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Notify connected event to listeners. -11:10:21.423 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:10:21.424 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1300497562 -11:10:21.458 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9400"] -11:10:21.482 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.80:9400 register finished -11:10:22.042 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Receive server push request, request = NotifySubscriberRequest, requestId = 12 -11:10:22.049 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [19228367-4587-4a49-a878-5a49f4c6ed47] Ack server push request, request = NotifySubscriberRequest, requestId = 12 -11:10:22.346 [main] INFO c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 15.908 seconds (JVM running for 17.462) -11:10:22.355 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP -11:10:22.357 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP -11:10:22.358 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP -11:16:00.933 [http-nio-9400-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:27:45.992 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:27:47.152 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0 -17:27:47.221 [main] INFO o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 1 urls, producing 3 keys and 6 values -17:27:47.258 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -17:27:47.273 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values -17:27:47.464 [main] INFO o.r.Reflections - [scan,232] - Reflections took 186 ms to scan 228 urls, producing 0 keys and 0 values -17:27:47.476 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -17:27:47.490 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values -17:27:47.503 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -17:27:47.657 [main] INFO o.r.Reflections - [scan,232] - Reflections took 151 ms to scan 228 urls, producing 0 keys and 0 values -17:27:47.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:27:47.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1035563730 -17:27:47.660 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/501991708 -17:27:47.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:27:47.662 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:27:47.673 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:27:49.624 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723714069656_192.168.110.80_59709 -17:27:49.625 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Notify connected event to listeners. -17:27:49.626 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:27:49.626 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [997b8e8d-dc07-4c3d-a18d-fd6c0280b81c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/902096996 -17:27:49.712 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:27:52.802 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -17:27:52.802 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:27:52.802 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:27:52.975 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:27:57.022 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:28:00.015 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0 -17:28:00.015 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] RpcClient init label, labels = {module=naming, source=sdk} -17:28:00.018 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:28:00.019 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:28:00.019 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:28:00.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:28:00.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723714080272_192.168.110.80_59714 -17:28:00.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:28:00.146 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Notify connected event to listeners. -17:28:00.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/902096996 -17:28:00.194 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9400"] -17:28:00.226 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.80:9400 register finished -17:28:00.737 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Receive server push request, request = NotifySubscriberRequest, requestId = 98 -17:28:00.747 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [cbd16ef7-7a8c-415b-9412-67b4f9bd4ad0] Ack server push request, request = NotifySubscriberRequest, requestId = 98 -17:28:01.151 [main] INFO c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 16.263 seconds (JVM running for 17.682) -17:28:01.161 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP -17:28:01.162 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP -17:28:01.162 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP -17:29:14.706 [http-nio-9400-exec-3] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' diff --git a/logs/ruoyi-order/info.2024-08-16.log b/logs/ruoyi-order/info.2024-08-16.log deleted file mode 100644 index 21a7200..0000000 --- a/logs/ruoyi-order/info.2024-08-16.log +++ /dev/null @@ -1,373 +0,0 @@ -14:31:53.154 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:31:54.335 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0 -14:31:54.403 [main] INFO o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 1 urls, producing 3 keys and 6 values -14:31:54.437 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values -14:31:54.458 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -14:31:54.648 [main] INFO o.r.Reflections - [scan,232] - Reflections took 184 ms to scan 228 urls, producing 0 keys and 0 values -14:31:54.659 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 5 values -14:31:54.674 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values -14:31:54.687 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -14:31:54.843 [main] INFO o.r.Reflections - [scan,232] - Reflections took 152 ms to scan 228 urls, producing 0 keys and 0 values -14:31:54.846 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:31:54.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1728924984 -14:31:54.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/320861946 -14:31:54.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:31:54.849 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:31:54.862 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:31:56.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789916938_192.168.110.80_59463 -14:31:56.766 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Notify connected event to listeners. -14:31:56.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:31:56.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8e2354d6-295e-4c5f-a142-baf0fd035a66_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/878242981 -14:31:56.849 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:32:00.093 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -14:32:00.094 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:32:00.094 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:32:00.265 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:32:04.187 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:32:07.064 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7f777baf-bdef-41e6-b23a-56fec628f601 -14:32:07.064 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] RpcClient init label, labels = {module=naming, source=sdk} -14:32:07.067 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:32:07.067 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:32:07.068 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:32:07.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:32:07.190 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789927461_192.168.110.80_59466 -14:32:07.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:32:07.192 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Notify connected event to listeners. -14:32:07.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/878242981 -14:32:07.247 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9400"] -14:32:07.278 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.80:9400 register finished -14:32:07.826 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Receive server push request, request = NotifySubscriberRequest, requestId = 118 -14:32:07.831 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7f777baf-bdef-41e6-b23a-56fec628f601] Ack server push request, request = NotifySubscriberRequest, requestId = 118 -14:32:08.132 [main] INFO c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 16.1 seconds (JVM running for 17.717) -14:32:08.141 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP -14:32:08.142 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP -14:32:08.142 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP -15:37:27.924 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:37:29.088 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0 -15:37:29.148 [main] INFO o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 1 urls, producing 3 keys and 6 values -15:37:29.194 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -15:37:29.210 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values -15:37:29.422 [main] INFO o.r.Reflections - [scan,232] - Reflections took 206 ms to scan 277 urls, producing 0 keys and 0 values -15:37:29.433 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 1 keys and 5 values -15:37:29.448 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -15:37:29.468 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 2 keys and 8 values -15:37:29.642 [main] INFO o.r.Reflections - [scan,232] - Reflections took 171 ms to scan 277 urls, producing 0 keys and 0 values -15:37:29.645 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:37:29.647 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/2031467683 -15:37:29.647 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1758876146 -15:37:29.648 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:37:29.649 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:37:29.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:37:31.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793851710_192.168.110.80_61018 -15:37:31.521 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Notify connected event to listeners. -15:37:31.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:37:31.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ce52d7de-edc8-44d5-aef2-40157e775ab2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/376660032 -15:37:31.618 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:37:34.138 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -15:37:34.200 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -15:37:34.208 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -15:37:34.281 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0 -15:37:34.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:37:34.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/2031467683 -15:37:34.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1758876146 -15:37:34.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:37:34.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:37:34.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:37:34.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793854685_192.168.110.80_61019 -15:37:34.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:37:34.403 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Notify connected event to listeners. -15:37:34.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1e5b95b6-95bb-4b27-81b3-f4fe1f18a7b5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/376660032 -15:37:34.534 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -15:37:34.617 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:37:34.727 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5147c02d-7e81-4b12-97a6-c9ffb1b2c01d -15:37:34.727 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] RpcClient init label, labels = {module=naming, source=sdk} -15:37:34.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:37:34.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:37:34.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:37:34.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:37:34.851 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793855134_192.168.110.80_61023 -15:37:34.852 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Notify connected event to listeners. -15:37:34.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:37:34.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/376660032 -15:37:34.881 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:37:35.209 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.80:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:37:35.469 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Receive server push request, request = NotifySubscriberRequest, requestId = 167 -15:37:35.470 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5147c02d-7e81-4b12-97a6-c9ffb1b2c01d] Ack server push request, request = NotifySubscriberRequest, requestId = 167 -15:37:35.886 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xdcbd700d, L:/192.168.110.80:61024 - R:/192.168.110.80:8091] -15:37:35.892 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 68 ms, version:2.0.0,role:TMROLE,channel:[id: 0xdcbd700d, L:/192.168.110.80:61024 - R:/192.168.110.80:8091] -15:37:35.893 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:37:35.910 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -15:37:35.910 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -15:37:35.920 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:37:35.920 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:37:35.920 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -15:37:36.808 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -15:37:36.808 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:37:36.808 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:37:37.001 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:37:37.210 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:37:37.391 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:37:37.465 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:37:37.465 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_order -15:37:37.467 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.80:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_order', applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:37:37.478 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xa41af4f2, L:/192.168.110.80:61028 - R:/192.168.110.80:8091] -15:37:37.478 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 8 ms, version:2.0.0,role:RMROLE,channel:[id: 0xa41af4f2, L:/192.168.110.80:61028 - R:/192.168.110.80:8091] -15:37:40.806 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:37:40.816 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:37:40.820 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xa41af4f2, L:/192.168.110.80:61028 ! R:/192.168.110.80:8091] -15:37:40.820 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xa41af4f2, L:/192.168.110.80:61028 ! R:/192.168.110.80:8091] -15:37:40.822 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:37:40.820 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xa41af4f2, L:/192.168.110.80:61028 ! R:/192.168.110.80:8091] -15:37:40.826 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xa41af4f2, L:/192.168.110.80:61028 ! R:/192.168.110.80:8091] -15:37:40.826 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa41af4f2, L:/192.168.110.80:61028 ! R:/192.168.110.80:8091]) will closed -15:37:40.827 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xa41af4f2, L:/192.168.110.80:61028 ! R:/192.168.110.80:8091]) will closed -15:38:54.780 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:38:55.958 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0 -15:38:56.022 [main] INFO o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 1 urls, producing 3 keys and 6 values -15:38:56.057 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -15:38:56.072 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:38:56.281 [main] INFO o.r.Reflections - [scan,232] - Reflections took 205 ms to scan 277 urls, producing 0 keys and 0 values -15:38:56.291 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -15:38:56.309 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -15:38:56.321 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 2 keys and 8 values -15:38:56.507 [main] INFO o.r.Reflections - [scan,232] - Reflections took 179 ms to scan 277 urls, producing 0 keys and 0 values -15:38:56.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:38:56.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1203142603 -15:38:56.510 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/731870416 -15:38:56.511 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:38:56.513 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:38:56.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:38:58.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793938699_192.168.110.80_61161 -15:38:58.506 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Notify connected event to listeners. -15:38:58.506 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:38:58.507 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4ed90733-48b1-44a6-818d-5ea3013cdc70_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1110981808 -15:38:58.594 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:39:01.180 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -15:39:01.245 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -15:39:01.257 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -15:39:01.331 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0 -15:39:01.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:39:01.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1203142603 -15:39:01.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/731870416 -15:39:01.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:39:01.332 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:39:01.332 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:01.451 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793941732_192.168.110.80_61162 -15:39:01.452 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:01.453 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1110981808 -15:39:01.453 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0d7dfca-ebe6-46f4-af22-72818bde5c9f_config-0] Notify connected event to listeners. -15:39:01.608 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -15:39:01.700 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:39:01.811 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7878e5be-ad7a-4e99-9518-0282b3b6a7e1 -15:39:01.812 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] RpcClient init label, labels = {module=naming, source=sdk} -15:39:01.814 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:39:01.814 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:39:01.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:39:01.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:01.932 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793942221_192.168.110.80_61165 -15:39:01.932 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:01.932 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Notify connected event to listeners. -15:39:01.932 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1110981808 -15:39:01.967 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:39:02.301 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.80:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:39:02.504 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Receive server push request, request = NotifySubscriberRequest, requestId = 176 -15:39:02.506 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7878e5be-ad7a-4e99-9518-0282b3b6a7e1] Ack server push request, request = NotifySubscriberRequest, requestId = 176 -15:39:02.990 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x362bf2b4, L:/192.168.110.80:61166 - R:/192.168.110.80:8091] -15:39:02.996 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 68 ms, version:2.0.0,role:TMROLE,channel:[id: 0x362bf2b4, L:/192.168.110.80:61166 - R:/192.168.110.80:8091] -15:39:02.996 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:39:03.013 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -15:39:03.013 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -15:39:03.021 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:39:03.022 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:39:03.022 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -15:39:03.919 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -15:39:03.919 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:39:03.919 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:39:04.107 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:39:04.321 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:39:04.526 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:39:04.590 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:39:04.591 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_order -15:39:04.592 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.80:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_order', applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:39:04.600 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xc327003b, L:/192.168.110.80:61171 - R:/192.168.110.80:8091] -15:39:04.600 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:2.0.0,role:RMROLE,channel:[id: 0xc327003b, L:/192.168.110.80:61171 - R:/192.168.110.80:8091] -15:39:07.989 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:39:07.999 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:39:08.004 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0xc327003b, L:/192.168.110.80:61171 ! R:/192.168.110.80:8091] -15:39:08.004 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0xc327003b, L:/192.168.110.80:61171 ! R:/192.168.110.80:8091] -15:39:08.004 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0xc327003b, L:/192.168.110.80:61171 ! R:/192.168.110.80:8091] -15:39:08.005 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0xc327003b, L:/192.168.110.80:61171 ! R:/192.168.110.80:8091] -15:39:08.005 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc327003b, L:/192.168.110.80:61171 ! R:/192.168.110.80:8091]) will closed -15:39:08.005 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0xc327003b, L:/192.168.110.80:61171 ! R:/192.168.110.80:8091]) will closed -15:39:08.007 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:39:32.565 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:39:33.722 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0 -15:39:33.782 [main] INFO o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 3 keys and 6 values -15:39:33.818 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values -15:39:33.834 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -15:39:34.031 [main] INFO o.r.Reflections - [scan,232] - Reflections took 193 ms to scan 277 urls, producing 0 keys and 0 values -15:39:34.042 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -15:39:34.056 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values -15:39:34.072 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -15:39:34.239 [main] INFO o.r.Reflections - [scan,232] - Reflections took 164 ms to scan 277 urls, producing 0 keys and 0 values -15:39:34.242 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:39:34.243 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1619773688 -15:39:34.243 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1410514922 -15:39:34.245 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:39:34.246 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:39:34.260 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:36.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793976344_192.168.110.80_61227 -15:39:36.160 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Notify connected event to listeners. -15:39:36.160 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:36.161 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4f429a9-6cb5-4ec0-b91a-06a7f52a7ac8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/95553286 -15:39:36.247 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:39:38.757 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -15:39:38.824 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -15:39:38.832 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -15:39:38.908 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0 -15:39:38.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:39:38.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1619773688 -15:39:38.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1410514922 -15:39:38.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:39:38.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:39:38.909 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:39.029 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793979309_192.168.110.80_61228 -15:39:39.029 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:39.029 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Notify connected event to listeners. -15:39:39.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [28ba1cff-425c-4f67-8cda-cdb1a6ed1d23_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/95553286 -15:39:39.138 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -15:39:39.231 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:39:39.341 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6eea20fd-93b3-404a-b6ed-e93aab3959e1 -15:39:39.341 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] RpcClient init label, labels = {module=naming, source=sdk} -15:39:39.344 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:39:39.344 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:39:39.345 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:39:39.345 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:39.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793979747_192.168.110.80_61231 -15:39:39.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:39.465 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Notify connected event to listeners. -15:39:39.465 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/95553286 -15:39:39.495 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:39:39.805 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.80:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:39:39.993 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Receive server push request, request = NotifySubscriberRequest, requestId = 177 -15:39:39.993 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6eea20fd-93b3-404a-b6ed-e93aab3959e1] Ack server push request, request = NotifySubscriberRequest, requestId = 177 -15:39:40.492 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0xa6aaaa05, L:/192.168.110.80:61232 - R:/192.168.110.80:8091] -15:39:40.498 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 76 ms, version:2.0.0,role:TMROLE,channel:[id: 0xa6aaaa05, L:/192.168.110.80:61232 - R:/192.168.110.80:8091] -15:39:40.499 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:39:40.514 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -15:39:40.514 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -15:39:40.522 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:39:40.522 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:39:40.522 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -15:39:41.335 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -15:39:41.336 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:39:41.336 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:39:41.534 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:39:41.734 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:39:41.905 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:39:41.968 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:39:41.968 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_order -15:39:41.969 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.80:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_order', applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:39:41.976 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x09b86364, L:/192.168.110.80:61236 - R:/192.168.110.80:8091] -15:39:41.977 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 6 ms, version:2.0.0,role:RMROLE,channel:[id: 0x09b86364, L:/192.168.110.80:61236 - R:/192.168.110.80:8091] -15:39:45.557 [main] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:39:45.567 [main] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:39:45.570 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [channelInactive,438] - channel inactive: [id: 0x09b86364, L:/192.168.110.80:61236 ! R:/192.168.110.80:8091] -15:39:45.571 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyClientChannelManager - [releaseChannel,133] - return to pool, rm channel:[id: 0x09b86364, L:/192.168.110.80:61236 ! R:/192.168.110.80:8091] -15:39:45.571 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [validateObject,133] - channel valid false,channel:[id: 0x09b86364, L:/192.168.110.80:61236 ! R:/192.168.110.80:8091] -15:39:45.572 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.NettyPoolableFactory - [destroyObject,120] - will destroy channel:[id: 0x09b86364, L:/192.168.110.80:61236 ! R:/192.168.110.80:8091] -15:39:45.572 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x09b86364, L:/192.168.110.80:61236 ! R:/192.168.110.80:8091]) will closed -15:39:45.572 [NettyClientSelector_RMROLE_1_1] INFO i.s.c.r.n.AbstractNettyRemotingClient - [close,488] - ChannelHandlerContext(AbstractNettyRemotingClient$ClientHandler#0, [id: 0x09b86364, L:/192.168.110.80:61236 ! R:/192.168.110.80:8091]) will closed -15:39:45.573 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:42:36.169 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:42:37.421 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0 -15:42:37.494 [main] INFO o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 1 urls, producing 3 keys and 6 values -15:42:37.530 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values -15:42:37.544 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:42:37.739 [main] INFO o.r.Reflections - [scan,232] - Reflections took 191 ms to scan 277 urls, producing 0 keys and 0 values -15:42:37.749 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -15:42:37.766 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -15:42:37.779 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -15:42:37.976 [main] INFO o.r.Reflections - [scan,232] - Reflections took 194 ms to scan 277 urls, producing 0 keys and 0 values -15:42:37.977 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:42:37.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/864657274 -15:42:37.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2023349777 -15:42:37.979 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:42:37.980 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:42:37.993 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:42:39.796 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723794159995_192.168.110.80_61332 -15:42:39.797 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Notify connected event to listeners. -15:42:39.797 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:39.798 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee9266bc-1c59-4dd9-aff8-6152c11847d8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1352743983 -15:42:39.881 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:42:42.410 [main] INFO i.s.s.b.a.SeataAutoConfiguration - [globalTransactionScanner,63] - Automatically configure Seata -15:42:42.484 [main] INFO i.s.c.ConfigurationFactory - [load,69] - load Configuration from :Spring Configuration -15:42:42.496 [main] INFO i.s.c.n.NacosConfiguration - [getConfigProperties,232] - Nacos check auth with userName/password. -15:42:42.571 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0 -15:42:42.571 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:42:42.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/864657274 -15:42:42.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2023349777 -15:42:42.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:42:42.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:42:42.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:42:42.692 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723794162973_192.168.110.80_61334 -15:42:42.693 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Notify connected event to listeners. -15:42:42.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:42.693 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [12c32e8d-5232-4e90-ad99-c08c8c7985ac_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1352743983 -15:42:42.812 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,208] - Initializing Global Transaction Clients ... -15:42:42.899 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:42:43.030 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a3e8afec-c9b1-4916-9886-7333919d43bb -15:42:43.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] RpcClient init label, labels = {module=naming, source=sdk} -15:42:43.032 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:42:43.032 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:42:43.032 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:42:43.033 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:42:43.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723794163434_192.168.110.80_61337 -15:42:43.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:43.144 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Notify connected event to listeners. -15:42:43.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1352743983 -15:42:43.178 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:42:43.497 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:TMROLE,address:192.168.110.80:8091,msg:< RegisterTMRequest{applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:42:43.736 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Receive server push request, request = NotifySubscriberRequest, requestId = 178 -15:42:43.737 [nacos-grpc-client-executor-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a3e8afec-c9b1-4916-9886-7333919d43bb] Ack server push request, request = NotifySubscriberRequest, requestId = 178 -15:42:44.169 [main] INFO i.s.c.r.n.TmNettyRemotingClient - [onRegisterMsgSuccess,224] - register TM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x6e9e7e50, L:/192.168.110.80:61340 - R:/192.168.110.80:8091] -15:42:44.176 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 65 ms, version:2.0.0,role:TMROLE,channel:[id: 0x6e9e7e50, L:/192.168.110.80:61340 - R:/192.168.110.80:8091] -15:42:44.176 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,222] - Transaction Manager Client is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:42:44.195 [main] INFO i.s.r.d.AsyncWorker - [<init>,73] - Async Commit Buffer Limit: 10000 -15:42:44.196 [main] INFO i.s.r.d.x.ResourceManagerXA - [init,60] - ResourceManagerXA init ... -15:42:44.205 [main] INFO i.s.c.r.n.NettyClientBootstrap - [start,147] - NettyClientBootstrap has started -15:42:44.205 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,227] - Resource Manager is initialized. applicationId[ruoyi-order] txServiceGroup[seata_tx_group] -15:42:44.205 [main] INFO i.s.s.a.GlobalTransactionScanner - [initClient,231] - Global Transaction Clients are initialized. -15:42:45.054 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -15:42:45.055 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:42:45.055 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:42:45.240 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:42:45.435 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:42:45.631 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:42:45.692 [main] INFO i.s.c.r.n.NettyClientChannelManager - [acquireChannel,108] - will connect to 192.168.110.80:8091 -15:42:45.692 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [lambda$getPoolKeyFunction$0,276] - RM will register :jdbc:mysql://192.168.110.169:8066/charging_pile_order -15:42:45.693 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,56] - NettyPool create channel to transactionRole:RMROLE,address:192.168.110.80:8091,msg:< RegisterRMRequest{resourceIds='jdbc:mysql://192.168.110.169:8066/charging_pile_order', applicationId='ruoyi-order', transactionServiceGroup='seata_tx_group'} > -15:42:45.701 [main] INFO i.s.c.r.n.RmNettyRemotingClient - [onRegisterMsgSuccess,177] - register RM success. client version:1.5.2, server version:2.0.0,channel:[id: 0x953c4d44, L:/192.168.110.80:61346 - R:/192.168.110.80:8091] -15:42:45.702 [main] INFO i.s.c.r.n.NettyPoolableFactory - [makeObject,81] - register success, cost 7 ms, version:2.0.0,role:RMROLE,channel:[id: 0x953c4d44, L:/192.168.110.80:61346 - R:/192.168.110.80:8091] -15:42:49.375 [main] INFO i.s.s.a.GlobalTransactionScanner - [wrapIfNecessary,305] - Bean[com.ruoyi.order.service.impl.TOrderEvaluateServiceImpl$$EnhancerBySpringCGLIB$$6a3800c8] with name [TOrderEvaluateServiceImpl] would use interceptor [io.seata.spring.annotation.GlobalTransactionalInterceptor] -15:42:49.909 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:42:52.913 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a209a328-3826-4cb8-a61e-fb4821eda0b5 -15:42:52.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] RpcClient init label, labels = {module=naming, source=sdk} -15:42:52.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:42:52.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:42:52.914 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:42:52.915 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:42:53.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723794173316_192.168.110.80_61361 -15:42:53.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:53.040 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Notify connected event to listeners. -15:42:53.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1352743983 -15:42:53.047 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9400"] -15:42:53.071 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.110.80:9400 register finished -15:42:53.575 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Receive server push request, request = NotifySubscriberRequest, requestId = 180 -15:42:53.578 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a209a328-3826-4cb8-a61e-fb4821eda0b5] Ack server push request, request = NotifySubscriberRequest, requestId = 180 -15:42:54.021 [main] INFO c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 19.103 seconds (JVM running for 20.777) -15:42:54.030 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP -15:42:54.032 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP -15:42:54.033 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP -15:59:47.972 [http-nio-9400-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:52:33.485 [rpcDispatch_RMROLE_1_1_12] INFO i.s.c.r.p.c.RmUndoLogProcessor - [process,49] - rm handle undo log process:UndoLogDeleteRequest{resourceId='jdbc:mysql://192.168.110.169:8066/charging_pile_order', saveDays=7, branchType=AT} diff --git a/logs/ruoyi-order/info.log b/logs/ruoyi-order/info.log deleted file mode 100644 index e12ee6c..0000000 --- a/logs/ruoyi-order/info.log +++ /dev/null @@ -1,209 +0,0 @@ -17:05:42.534 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:05:44.167 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0 -17:05:44.247 [main] INFO o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values -17:05:44.292 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values -17:05:44.311 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -17:05:44.597 [main] INFO o.r.Reflections - [scan,232] - Reflections took 280 ms to scan 227 urls, producing 0 keys and 0 values -17:05:44.640 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:05:44.658 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -17:05:44.676 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -17:05:44.899 [main] INFO o.r.Reflections - [scan,232] - Reflections took 219 ms to scan 227 urls, producing 0 keys and 0 values -17:05:44.900 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:05:44.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1443173326 -17:05:44.902 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/318794136 -17:05:44.903 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:05:44.904 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:05:44.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:05:47.621 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723539947978_192.168.110.85_60175 -17:05:47.622 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Notify connected event to listeners. -17:05:47.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:05:47.623 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4523d7d-700f-4eec-a68c-16f2c71a951c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/194903130 -17:05:47.740 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:05:51.485 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -17:05:51.486 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:05:51.486 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:05:51.710 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:05:57.322 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:07:11.680 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:07:13.496 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 39b8cc2c-a872-4487-9517-939278f21da6_config-0 -17:07:13.598 [main] INFO o.r.Reflections - [scan,232] - Reflections took 64 ms to scan 1 urls, producing 3 keys and 6 values -17:07:13.652 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -17:07:13.674 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values -17:07:13.939 [main] INFO o.r.Reflections - [scan,232] - Reflections took 260 ms to scan 228 urls, producing 0 keys and 0 values -17:07:13.954 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -17:07:13.974 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -17:07:13.992 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:07:14.228 [main] INFO o.r.Reflections - [scan,232] - Reflections took 231 ms to scan 228 urls, producing 0 keys and 0 values -17:07:14.230 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:07:14.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1018742990 -17:07:14.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/534643569 -17:07:14.235 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:07:14.236 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:07:14.252 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:07:17.137 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540037475_192.168.110.85_60236 -17:07:17.140 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Notify connected event to listeners. -17:07:17.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:07:17.142 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/132659602 -17:07:17.296 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:07:21.601 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -17:07:21.602 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:07:21.602 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:07:21.862 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:07:27.684 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:07:32.088 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f9bf4ebb-711a-4975-831c-d3b9d26cabd4 -17:07:32.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] RpcClient init label, labels = {module=naming, source=sdk} -17:07:32.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:07:32.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:07:32.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:07:32.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:07:32.218 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540052687_192.168.110.85_60244 -17:07:32.218 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:07:32.218 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Notify connected event to listeners. -17:07:32.218 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/132659602 -17:07:32.269 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9400"] -17:07:32.314 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.204.1:9400 register finished -17:07:32.814 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Receive server push request, request = NotifySubscriberRequest, requestId = 197 -17:07:32.822 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Ack server push request, request = NotifySubscriberRequest, requestId = 197 -17:07:33.677 [main] INFO c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 23.71 seconds (JVM running for 25.488) -17:07:33.692 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP -17:07:33.693 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP -17:07:33.694 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP -17:07:34.104 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:07:35.167 [RMI TCP Connection(5)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:07:35.491 [RMI TCP Connection(5)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:39:44.072 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Server healthy check fail, currentConnection = 1723540037475_192.168.110.85_60236 -17:39:44.073 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:49.657 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Server healthy check fail, currentConnection = 1723540052687_192.168.110.85_60244 -17:39:49.658 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:50.300 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:53.539 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:55.786 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:56.863 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:39:59.006 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.284 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:02.325 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 3 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:03.800 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:05.740 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 4 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:07.581 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:09.265 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 5 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:11.363 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:12.906 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 6 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:15.182 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:16.635 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 7 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:19.113 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:20.445 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 8 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:23.148 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:24.358 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 9 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:27.269 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:28.373 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 10 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:31.498 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:32.579 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 11 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:35.839 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:36.881 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 12 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:40.254 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:41.202 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 13 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:44.776 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:45.612 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 14 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:49.387 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:50.139 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 15 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:54.093 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:54.757 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 16 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:58.918 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:59.472 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 17 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:03.876 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:04.307 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 18 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:08.907 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:09.241 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 19 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:14.038 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:14.257 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 20 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:19.259 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:19.386 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 21 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:24.580 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:24.612 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 22 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:29.940 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 23 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:30.143 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:35.356 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 24 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:35.672 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:40.867 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 25 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:41.285 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:46.479 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 26 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:46.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:52.194 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Fail to connect server, after trying 27 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:52.809 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:41:55.850 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116335_192.168.110.85_61520 -17:41:55.851 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723540037475_192.168.110.85_60236 -17:41:55.851 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723540037475_192.168.110.85_60236 -17:41:55.852 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Notify disconnected event to listeners -17:41:55.852 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [39b8cc2c-a872-4487-9517-939278f21da6_config-0] Notify connected event to listeners. -17:41:56.136 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Success to connect a server [192.168.110.169:8848], connectionId = 1723542116621_192.168.110.85_61517 -17:41:56.136 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Abandon prev connection, server is 192.168.110.169:8848, connectionId is 1723540052687_192.168.110.85_60244 -17:41:56.136 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723540052687_192.168.110.85_60244 -17:41:56.137 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Notify disconnected event to listeners -17:41:56.138 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Notify connected event to listeners. -17:41:57.861 [nacos-grpc-client-executor-426] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Receive server push request, request = NotifySubscriberRequest, requestId = 213 -17:41:57.862 [nacos-grpc-client-executor-426] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Ack server push request, request = NotifySubscriberRequest, requestId = 213 -18:06:32.330 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -18:06:32.345 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -18:06:33.516 [nacos-grpc-client-executor-720] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Receive server push request, request = NotifySubscriberRequest, requestId = 220 -18:06:33.543 [nacos-grpc-client-executor-720] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f9bf4ebb-711a-4975-831c-d3b9d26cabd4] Ack server push request, request = NotifySubscriberRequest, requestId = 220 -18:06:33.843 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -18:06:33.851 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@31b1f83b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -18:06:33.854 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723542116621_192.168.110.85_61517 -18:06:33.857 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3f02d3f2[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 721] -18:06:35.792 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -18:06:36.250 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -18:07:04.912 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:07:06.706 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1d854c8a-c79e-468b-a8de-8d47ca568861_config-0 -18:07:06.810 [main] INFO o.r.Reflections - [scan,232] - Reflections took 61 ms to scan 1 urls, producing 3 keys and 6 values -18:07:06.861 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -18:07:06.880 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -18:07:07.144 [main] INFO o.r.Reflections - [scan,232] - Reflections took 258 ms to scan 228 urls, producing 0 keys and 0 values -18:07:07.160 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -18:07:07.184 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -18:07:07.202 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -18:07:07.438 [main] INFO o.r.Reflections - [scan,232] - Reflections took 232 ms to scan 228 urls, producing 0 keys and 0 values -18:07:07.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:07:07.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1754087707 -18:07:07.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/942444738 -18:07:07.447 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:07:07.448 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:07:07.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:07:10.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543630735_192.168.110.85_62360 -18:07:10.373 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Notify connected event to listeners. -18:07:10.373 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:07:10.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d854c8a-c79e-468b-a8de-8d47ca568861_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1832101486 -18:07:10.497 [main] INFO c.r.o.RuoYiOrderApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:07:14.685 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9400"] -18:07:14.685 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:07:14.685 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:07:14.945 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:07:20.659 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:07:25.002 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0ffadd02-45b7-423d-a882-bb8e7d8dcbee -18:07:25.003 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] RpcClient init label, labels = {module=naming, source=sdk} -18:07:25.007 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:07:25.007 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:07:25.008 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:07:25.009 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:07:25.134 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543645635_192.168.110.85_62364 -18:07:25.134 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Notify connected event to listeners. -18:07:25.134 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:07:25.134 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1832101486 -18:07:25.189 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9400"] -18:07:25.233 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-order 192.168.204.1:9400 register finished -18:07:25.713 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Receive server push request, request = NotifySubscriberRequest, requestId = 222 -18:07:25.721 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ffadd02-45b7-423d-a882-bb8e7d8dcbee] Ack server push request, request = NotifySubscriberRequest, requestId = 222 -18:07:26.580 [main] INFO c.r.o.RuoYiOrderApplication - [logStarted,61] - Started RuoYiOrderApplication in 23.361 seconds (JVM running for 25.223) -18:07:26.595 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order, group=DEFAULT_GROUP -18:07:26.597 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order.yml, group=DEFAULT_GROUP -18:07:26.597 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-order-dev.yml, group=DEFAULT_GROUP -18:07:27.608 [RMI TCP Connection(2)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:07:27.757 [RMI TCP Connection(1)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -18:07:28.275 [RMI TCP Connection(1)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -18:49:22.295 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -18:49:22.310 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -18:49:22.654 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -18:49:22.654 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6654c3b5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -18:49:22.655 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723543645635_192.168.110.85_62364 -18:49:22.663 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@e1570f[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 511] -18:49:23.094 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -18:49:23.108 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. diff --git a/logs/ruoyi-other/error.2024-08-15.log b/logs/ruoyi-other/error.2024-08-15.log deleted file mode 100644 index e69de29..0000000 --- a/logs/ruoyi-other/error.2024-08-15.log +++ /dev/null diff --git a/logs/ruoyi-other/error.2024-08-16.log b/logs/ruoyi-other/error.2024-08-16.log deleted file mode 100644 index 499c4f7..0000000 --- a/logs/ruoyi-other/error.2024-08-16.log +++ /dev/null @@ -1,500 +0,0 @@ -17:20:31.305 [http-nio-9600-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/integral/getInfo',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -### The error may exist in com/ruoyi/other/mapper/THtmlMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id,type,content,create_time AS createTime,del_flag AS delFlag FROM t_html WHERE del_flag=0 AND (type = ?) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy190.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy190.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.other.service.impl.THtmlServiceImpl$$EnhancerBySpringCGLIB$$fa2d171f.getOne(<generated>) - at com.ruoyi.other.controller.TIntegralRuleController.getInfo(TIntegralRuleController.java:64) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy287.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy285.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy284.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 75 common frames omitted -17:20:43.610 [http-nio-9600-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/integral/getInfo',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -### The error may exist in com/ruoyi/other/mapper/THtmlMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id,type,content,create_time AS createTime,del_flag AS delFlag FROM t_html WHERE del_flag=0 AND (type = ?) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy190.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy190.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.other.service.impl.THtmlServiceImpl$$EnhancerBySpringCGLIB$$fa2d171f.getOne(<generated>) - at com.ruoyi.other.controller.TIntegralRuleController.getInfo(TIntegralRuleController.java:64) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy287.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy285.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy284.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 75 common frames omitted -17:29:15.795 [http-nio-9600-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/integral/getSet',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -### The error may exist in com/ruoyi/other/mapper/TIntegralRuleMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id,charge_credit AS chargeCredit,credit,add_vehicles_earns_points AS addVehiclesEarnsPoints,invite_users_to_earn_points AS inviteUsersToEarnPoints,sign_in_for_points AS signInForPoints,create_time AS createTime,del_flag AS delFlag FROM t_integral_rule WHERE del_flag=0 -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.other.service.impl.TIntegralRuleServiceImpl$$EnhancerBySpringCGLIB$$df7dc748.getOne(<generated>) - at com.ruoyi.other.controller.TIntegralRuleController.getSet(TIntegralRuleController.java:39) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy287.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy285.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy284.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 75 common frames omitted -17:59:07.215 [http-nio-9600-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/integral/getSet',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -### The error may exist in com/ruoyi/other/mapper/TIntegralRuleMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id,charge_credit AS chargeCredit,credit,add_vehicles_earns_points AS addVehiclesEarnsPoints,invite_users_to_earn_points AS inviteUsersToEarnPoints,sign_in_for_points AS signInForPoints,create_time AS createTime,del_flag AS delFlag FROM t_integral_rule WHERE del_flag=0 -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.other.service.impl.TIntegralRuleServiceImpl$$EnhancerBySpringCGLIB$$df7dc748.getOne(<generated>) - at com.ruoyi.other.controller.TIntegralRuleController.getSet(TIntegralRuleController.java:39) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy287.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy285.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy284.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 75 common frames omitted diff --git a/logs/ruoyi-other/error.log b/logs/ruoyi-other/error.log deleted file mode 100644 index 5b27821..0000000 --- a/logs/ruoyi-other/error.log +++ /dev/null @@ -1,325 +0,0 @@ -09:04:03.706 [http-nio-9600-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/integral/getSet',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -### The error may exist in com/ruoyi/other/mapper/TIntegralRuleMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id,charge_credit AS chargeCredit,credit,add_vehicles_earns_points AS addVehiclesEarnsPoints,invite_users_to_earn_points AS inviteUsersToEarnPoints,sign_in_for_points AS signInForPoints,create_time AS createTime,del_flag AS delFlag FROM t_integral_rule WHERE del_flag=0 -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.other.service.impl.TIntegralRuleServiceImpl$$EnhancerBySpringCGLIB$$df7dc748.getOne(<generated>) - at com.ruoyi.other.controller.TIntegralRuleController.getSet(TIntegralRuleController.java:39) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy287.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy285.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy284.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 75 common frames omitted -09:04:09.594 [http-nio-9600-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/integral/getSet',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -### The error may exist in com/ruoyi/other/mapper/TIntegralRuleMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id,charge_credit AS chargeCredit,credit,add_vehicles_earns_points AS addVehiclesEarnsPoints,invite_users_to_earn_points AS inviteUsersToEarnPoints,sign_in_for_points AS signInForPoints,create_time AS createTime,del_flag AS delFlag FROM t_integral_rule WHERE del_flag=0 -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy192.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.other.service.impl.TIntegralRuleServiceImpl$$EnhancerBySpringCGLIB$$df7dc748.getOne(<generated>) - at com.ruoyi.other.controller.TIntegralRuleController.getSet(TIntegralRuleController.java:39) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'create_time' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) - at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy287.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy285.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy284.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 75 common frames omitted -11:14:39.496 [main] ERROR o.s.b.w.e.t.TomcatStarter - [onStartup,61] - Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'webMvcMetricsFilter' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class]: Unsatisfied dependency expressed through method 'webMvcMetricsFilter' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'simpleMeterRegistry' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSourcePoolMetadataMeterBinder' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class]: Unsatisfied dependency expressed through method 'dataSourcePoolMetadataMeterBinder' parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSource' defined in class path resource [com/ruoyi/other/config/DataSourceProxyConfig.class]: Unsatisfied dependency expressed through method 'dataSource' parameter 0; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'dataSource': Requested bean is currently in creation: Is there an unresolvable circular reference? -11:14:39.620 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -The dependencies of some of the beans in the application context form a cycle: - - webMvcMetricsFilter defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class] - ↓ - simpleMeterRegistry defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class] - ↓ - dataSourcePoolMetadataMeterBinder defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class] -┌─────┐ -| dataSource defined in class path resource [com/ruoyi/other/config/DataSourceProxyConfig.class] -└─────┘ - - -Action: - -Despite circular references being allowed, the dependency cycle between beans could not be broken. Update your application to remove the dependency cycle. - -11:15:02.907 [main] ERROR o.s.b.w.e.t.TomcatStarter - [onStartup,61] - Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'webMvcMetricsFilter' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class]: Unsatisfied dependency expressed through method 'webMvcMetricsFilter' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'simpleMeterRegistry' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSourcePoolMetadataMeterBinder' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class]: Unsatisfied dependency expressed through method 'dataSourcePoolMetadataMeterBinder' parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSource' defined in class path resource [com/ruoyi/other/config/DataSourceProxyConfig.class]: Unsatisfied dependency expressed through method 'dataSource' parameter 0; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'dataSource': Requested bean is currently in creation: Is there an unresolvable circular reference? -11:15:03.020 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -The dependencies of some of the beans in the application context form a cycle: - - webMvcMetricsFilter defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class] - ↓ - simpleMeterRegistry defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class] - ↓ - dataSourcePoolMetadataMeterBinder defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class] -┌─────┐ -| dataSource defined in class path resource [com/ruoyi/other/config/DataSourceProxyConfig.class] -└─────┘ - - -Action: - -Despite circular references being allowed, the dependency cycle between beans could not be broken. Update your application to remove the dependency cycle. - -11:16:49.038 [main] ERROR o.s.b.w.e.t.TomcatStarter - [onStartup,61] - Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'webMvcMetricsFilter' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class]: Unsatisfied dependency expressed through method 'webMvcMetricsFilter' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'simpleMeterRegistry' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSourcePoolMetadataMeterBinder' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class]: Unsatisfied dependency expressed through method 'dataSourcePoolMetadataMeterBinder' parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSource' defined in class path resource [com/ruoyi/other/config/DataSourceProxyConfig.class]: Unsatisfied dependency expressed through method 'dataSource' parameter 0; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'dataSource': Requested bean is currently in creation: Is there an unresolvable circular reference? -11:16:49.149 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -The dependencies of some of the beans in the application context form a cycle: - - webMvcMetricsFilter defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class] - ↓ - simpleMeterRegistry defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class] - ↓ - dataSourcePoolMetadataMeterBinder defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class] -┌─────┐ -| dataSource defined in class path resource [com/ruoyi/other/config/DataSourceProxyConfig.class] -└─────┘ - - -Action: - -Despite circular references being allowed, the dependency cycle between beans could not be broken. Update your application to remove the dependency cycle. - diff --git a/logs/ruoyi-other/info.2024-08-15.log b/logs/ruoyi-other/info.2024-08-15.log deleted file mode 100644 index fcd58f5..0000000 --- a/logs/ruoyi-other/info.2024-08-15.log +++ /dev/null @@ -1,45 +0,0 @@ -11:09:28.786 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:09:29.892 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b8e8e462-431c-4b02-824f-c619d49c1728_config-0 -11:09:29.946 [main] INFO o.r.Reflections - [scan,232] - Reflections took 35 ms to scan 1 urls, producing 3 keys and 6 values -11:09:29.980 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 4 keys and 9 values -11:09:29.994 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -11:09:30.179 [main] INFO o.r.Reflections - [scan,232] - Reflections took 183 ms to scan 227 urls, producing 0 keys and 0 values -11:09:30.191 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -11:09:30.205 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -11:09:30.219 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -11:09:30.371 [main] INFO o.r.Reflections - [scan,232] - Reflections took 150 ms to scan 227 urls, producing 0 keys and 0 values -11:09:30.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:09:30.373 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1107779742 -11:09:30.373 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/527939020 -11:09:30.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:09:30.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:09:30.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:09:32.062 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691372087_192.168.110.80_54100 -11:09:32.062 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Notify connected event to listeners. -11:09:32.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:09:32.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b8e8e462-431c-4b02-824f-c619d49c1728_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1168849885 -11:09:32.135 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:09:34.959 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -11:09:34.960 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:09:34.960 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:09:35.128 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:09:39.457 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:09:42.280 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6450ee5d-3831-4748-ba1d-3618bac499d2 -11:09:42.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] RpcClient init label, labels = {module=naming, source=sdk} -11:09:42.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:09:42.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:09:42.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:09:42.283 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:09:42.406 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691382487_192.168.110.80_54109 -11:09:42.408 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:09:42.408 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Notify connected event to listeners. -11:09:42.409 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1168849885 -11:09:42.455 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9600"] -11:09:42.481 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-other 192.168.110.80:9600 register finished -11:09:42.995 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Receive server push request, request = NotifySubscriberRequest, requestId = 8 -11:09:43.001 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6450ee5d-3831-4748-ba1d-3618bac499d2] Ack server push request, request = NotifySubscriberRequest, requestId = 8 -11:09:43.525 [main] INFO c.r.o.RuoYiOtherApplication - [logStarted,61] - Started RuoYiOtherApplication in 15.769 seconds (JVM running for 17.325) -11:09:43.534 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other-dev.yml, group=DEFAULT_GROUP -11:09:43.535 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other, group=DEFAULT_GROUP -11:09:43.536 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other.yml, group=DEFAULT_GROUP -11:13:21.458 [http-nio-9600-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' diff --git a/logs/ruoyi-other/info.2024-08-16.log b/logs/ruoyi-other/info.2024-08-16.log deleted file mode 100644 index 710058c..0000000 --- a/logs/ruoyi-other/info.2024-08-16.log +++ /dev/null @@ -1,92 +0,0 @@ -14:31:17.146 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:31:18.283 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0 -14:31:18.354 [main] INFO o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 3 keys and 6 values -14:31:18.383 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 4 keys and 9 values -14:31:18.398 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values -14:31:18.571 [main] INFO o.r.Reflections - [scan,232] - Reflections took 170 ms to scan 227 urls, producing 0 keys and 0 values -14:31:18.581 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -14:31:18.597 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 7 values -14:31:18.608 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 2 keys and 8 values -14:31:18.775 [main] INFO o.r.Reflections - [scan,232] - Reflections took 165 ms to scan 227 urls, producing 0 keys and 0 values -14:31:18.776 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:31:18.777 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/168670597 -14:31:18.777 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/724886412 -14:31:18.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:31:18.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:31:18.790 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:31:20.525 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789880726_192.168.110.80_59416 -14:31:20.526 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Notify connected event to listeners. -14:31:20.526 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:31:20.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4cd16b69-0784-4bba-b229-c2c2caa97d6f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1519611492 -14:31:20.597 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:31:23.896 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -14:31:23.896 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:31:23.897 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:31:24.069 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:31:28.484 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:31:31.305 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bf6aeec1-47cf-49f3-b8e0-ab2914ab1487 -14:31:31.306 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] RpcClient init label, labels = {module=naming, source=sdk} -14:31:31.307 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:31:31.307 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:31:31.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:31:31.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:31:31.422 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723789891703_192.168.110.80_59418 -14:31:31.422 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:31:31.422 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Notify connected event to listeners. -14:31:31.423 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1519611492 -14:31:31.461 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9600"] -14:31:31.491 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-other 192.168.110.80:9600 register finished -14:31:31.999 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Receive server push request, request = NotifySubscriberRequest, requestId = 115 -14:31:32.004 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf6aeec1-47cf-49f3-b8e0-ab2914ab1487] Ack server push request, request = NotifySubscriberRequest, requestId = 115 -14:31:32.685 [main] INFO c.r.o.RuoYiOtherApplication - [logStarted,61] - Started RuoYiOtherApplication in 16.646 seconds (JVM running for 18.07) -14:31:32.697 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other-dev.yml, group=DEFAULT_GROUP -14:31:32.698 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other, group=DEFAULT_GROUP -14:31:32.699 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other.yml, group=DEFAULT_GROUP -14:37:26.073 [http-nio-9600-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:36:30.905 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:36:32.062 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 17796988-3d82-460f-972b-a7b5ce7c8383_config-0 -15:36:32.122 [main] INFO o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 1 urls, producing 3 keys and 6 values -15:36:32.155 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 4 keys and 9 values -15:36:32.170 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:36:32.355 [main] INFO o.r.Reflections - [scan,232] - Reflections took 181 ms to scan 227 urls, producing 0 keys and 0 values -15:36:32.365 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -15:36:32.378 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 1 keys and 7 values -15:36:32.390 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -15:36:32.548 [main] INFO o.r.Reflections - [scan,232] - Reflections took 154 ms to scan 227 urls, producing 0 keys and 0 values -15:36:32.551 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:36:32.552 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/569661948 -15:36:32.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1293495023 -15:36:32.555 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:36:32.556 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:36:32.564 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:36:34.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793794549_192.168.110.80_60960 -15:36:34.338 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Notify connected event to listeners. -15:36:34.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:36:34.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [17796988-3d82-460f-972b-a7b5ce7c8383_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1051927339 -15:36:34.407 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:36:37.383 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -15:36:37.383 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:36:37.384 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:36:37.558 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:36:41.962 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:36:44.846 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 5b6c43f9-8bd1-4188-93d4-ef73524b4891 -15:36:44.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] RpcClient init label, labels = {module=naming, source=sdk} -15:36:44.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:36:44.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:36:44.849 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:36:44.849 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:36:44.967 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793805248_192.168.110.80_60965 -15:36:44.967 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:36:44.967 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Notify connected event to listeners. -15:36:44.967 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$351/1051927339 -15:36:44.998 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9600"] -15:36:45.021 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-other 192.168.110.80:9600 register finished -15:36:45.539 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Receive server push request, request = NotifySubscriberRequest, requestId = 164 -15:36:45.546 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [5b6c43f9-8bd1-4188-93d4-ef73524b4891] Ack server push request, request = NotifySubscriberRequest, requestId = 164 -15:36:46.126 [main] INFO c.r.o.RuoYiOtherApplication - [logStarted,61] - Started RuoYiOtherApplication in 16.315 seconds (JVM running for 17.78) -15:36:46.135 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other-dev.yml, group=DEFAULT_GROUP -15:36:46.136 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other, group=DEFAULT_GROUP -15:36:46.136 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other.yml, group=DEFAULT_GROUP -15:48:06.568 [http-nio-9600-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:20:31.022 [http-nio-9600-exec-8] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:20:31.204 [http-nio-9600-exec-8] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. diff --git a/logs/ruoyi-other/info.log b/logs/ruoyi-other/info.log deleted file mode 100644 index 03fc211..0000000 --- a/logs/ruoyi-other/info.log +++ /dev/null @@ -1,691 +0,0 @@ -17:12:11.458 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:12:13.349 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0 -17:12:13.436 [main] INFO o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 3 keys and 6 values -17:12:13.480 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -17:12:13.499 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -17:12:14.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 520 ms to scan 227 urls, producing 0 keys and 0 values -17:12:14.039 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:12:14.059 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -17:12:14.076 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:12:14.313 [main] INFO o.r.Reflections - [scan,232] - Reflections took 234 ms to scan 227 urls, producing 0 keys and 0 values -17:12:14.317 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:12:14.319 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1960031800 -17:12:14.320 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1149747394 -17:12:14.322 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:12:14.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:12:14.335 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:12:17.370 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540337706_192.168.110.85_60453 -17:12:17.371 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Notify connected event to listeners. -17:12:17.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:12:17.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3cf1cc5f-b488-4a94-9044-02f4f916fb8e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1661178041 -17:12:17.495 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:12:23.118 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -17:12:23.118 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:12:23.119 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:12:23.472 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:12:30.734 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:14:52.631 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:14:54.336 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c107c9ee-b104-4856-85f7-80199db298b6_config-0 -17:14:54.437 [main] INFO o.r.Reflections - [scan,232] - Reflections took 72 ms to scan 1 urls, producing 3 keys and 6 values -17:14:54.479 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -17:14:54.497 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -17:14:54.764 [main] INFO o.r.Reflections - [scan,232] - Reflections took 262 ms to scan 227 urls, producing 0 keys and 0 values -17:14:54.778 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -17:14:54.799 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -17:14:54.816 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -17:14:55.045 [main] INFO o.r.Reflections - [scan,232] - Reflections took 226 ms to scan 227 urls, producing 0 keys and 0 values -17:14:55.049 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:14:55.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/508756323 -17:14:55.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/349717579 -17:14:55.052 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:14:55.053 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:14:55.064 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:14:57.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540498039_192.168.110.85_60577 -17:14:57.660 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Notify connected event to listeners. -17:14:57.662 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:14:57.663 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c107c9ee-b104-4856-85f7-80199db298b6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/324008184 -17:14:57.768 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:15:01.888 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -17:15:01.889 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:15:01.889 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:15:02.153 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:15:05.519 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:23:06.319 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:23:08.931 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0 -17:23:09.019 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values -17:23:09.064 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -17:23:09.083 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -17:23:09.352 [main] INFO o.r.Reflections - [scan,232] - Reflections took 264 ms to scan 227 urls, producing 0 keys and 0 values -17:23:09.366 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -17:23:09.384 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -17:23:09.401 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:23:09.636 [main] INFO o.r.Reflections - [scan,232] - Reflections took 232 ms to scan 227 urls, producing 0 keys and 0 values -17:23:09.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:23:09.642 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1037346554 -17:23:09.643 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/435626542 -17:23:09.644 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:23:09.645 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:23:09.658 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:23:12.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723540992768_192.168.110.85_60801 -17:23:12.398 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Notify connected event to listeners. -17:23:12.399 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:23:12.400 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ed8a91bf-f873-40bb-8ce6-2b2aecdb77b9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/736236438 -17:23:12.525 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:23:16.653 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -17:23:16.654 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:23:16.654 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:23:16.940 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:23:20.335 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:33:58.386 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:34:00.869 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0 -17:34:00.984 [main] INFO o.r.Reflections - [scan,232] - Reflections took 74 ms to scan 1 urls, producing 3 keys and 6 values -17:34:01.054 [main] INFO o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 4 keys and 9 values -17:34:01.139 [main] INFO o.r.Reflections - [scan,232] - Reflections took 80 ms to scan 1 urls, producing 3 keys and 10 values -17:34:01.849 [main] INFO o.r.Reflections - [scan,232] - Reflections took 701 ms to scan 227 urls, producing 0 keys and 0 values -17:34:01.897 [main] INFO o.r.Reflections - [scan,232] - Reflections took 46 ms to scan 1 urls, producing 1 keys and 5 values -17:34:01.973 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 1 keys and 7 values -17:34:02.047 [main] INFO o.r.Reflections - [scan,232] - Reflections took 71 ms to scan 1 urls, producing 2 keys and 8 values -17:34:02.831 [main] INFO o.r.Reflections - [scan,232] - Reflections took 759 ms to scan 227 urls, producing 0 keys and 0 values -17:34:02.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:34:02.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/186049026 -17:34:02.838 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/865744496 -17:34:02.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:34:02.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:34:03.077 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:34:07.937 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723541648242_192.168.110.85_61001 -17:34:07.938 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Notify connected event to listeners. -17:34:07.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:34:07.941 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [be1f05fc-3a3e-4be1-a60e-86ee5b145a09_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/331918455 -17:34:08.139 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:34:15.140 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -17:34:15.140 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:34:15.140 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:34:15.396 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:34:18.884 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:39:31.907 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:39:35.885 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f97da760-1138-46ec-b4ec-1d7416f522ba_config-0 -17:39:36.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 96 ms to scan 1 urls, producing 3 keys and 6 values -17:39:36.171 [main] INFO o.r.Reflections - [scan,232] - Reflections took 112 ms to scan 1 urls, producing 4 keys and 9 values -17:39:36.212 [main] INFO o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 3 keys and 10 values -17:39:36.858 [main] INFO o.r.Reflections - [scan,232] - Reflections took 641 ms to scan 227 urls, producing 0 keys and 0 values -17:39:36.910 [main] INFO o.r.Reflections - [scan,232] - Reflections took 50 ms to scan 1 urls, producing 1 keys and 5 values -17:39:36.983 [main] INFO o.r.Reflections - [scan,232] - Reflections took 61 ms to scan 1 urls, producing 1 keys and 7 values -17:39:37.044 [main] INFO o.r.Reflections - [scan,232] - Reflections took 53 ms to scan 1 urls, producing 2 keys and 8 values -17:39:38.919 [main] INFO o.r.Reflections - [scan,232] - Reflections took 1870 ms to scan 227 urls, producing 0 keys and 0 values -17:39:38.920 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:39:38.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1134601005 -17:39:38.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/963573938 -17:39:38.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:39:39.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:39:39.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:39:48.292 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:39:51.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:39:54.332 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -17:39:54.333 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:39:54.334 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1725825266 -17:39:55.751 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:40:00.365 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -17:40:00.366 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:40:00.366 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:40:00.458 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:00.653 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:40:03.688 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f97da760-1138-46ec-b4ec-1d7416f522ba_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '192.168.110.169', server main port = 8848}, error = unknown -17:40:04.647 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:44:55.944 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -17:44:57.765 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0 -17:44:57.853 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -17:44:57.898 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -17:44:57.917 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -17:44:58.214 [main] INFO o.r.Reflections - [scan,232] - Reflections took 293 ms to scan 227 urls, producing 0 keys and 0 values -17:44:58.231 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 5 values -17:44:58.249 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -17:44:58.266 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -17:44:58.500 [main] INFO o.r.Reflections - [scan,232] - Reflections took 231 ms to scan 227 urls, producing 0 keys and 0 values -17:44:58.504 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -17:44:58.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1547994163 -17:44:58.506 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/263656423 -17:44:58.507 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:44:58.508 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:44:58.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -17:45:01.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723542302075_192.168.110.85_61668 -17:45:01.689 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Notify connected event to listeners. -17:45:01.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:45:01.691 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7051fc0e-20a4-4add-af1d-c4b8fed42016_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/849520318 -17:45:01.806 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -17:45:06.490 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -17:45:06.491 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:45:06.491 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -17:45:06.756 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:45:15.579 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:01:08.138 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:01:10.230 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3f8141ec-8ffb-411f-bf83-027138c53011_config-0 -18:01:10.321 [main] INFO o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 3 keys and 6 values -18:01:10.367 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -18:01:10.385 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -18:01:10.664 [main] INFO o.r.Reflections - [scan,232] - Reflections took 274 ms to scan 227 urls, producing 0 keys and 0 values -18:01:10.679 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -18:01:10.698 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -18:01:10.716 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -18:01:10.942 [main] INFO o.r.Reflections - [scan,232] - Reflections took 223 ms to scan 227 urls, producing 0 keys and 0 values -18:01:10.946 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:01:10.947 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/974606690 -18:01:10.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/373299466 -18:01:10.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:01:10.950 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:01:10.963 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:01:13.599 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543273985_192.168.110.85_62069 -18:01:13.600 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Notify connected event to listeners. -18:01:13.601 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:01:13.602 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3f8141ec-8ffb-411f-bf83-027138c53011_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/859279938 -18:01:13.732 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:01:18.402 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:01:18.402 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:01:18.403 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:01:18.660 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:01:22.217 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:03:19.158 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:03:20.906 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0 -18:03:20.997 [main] INFO o.r.Reflections - [scan,232] - Reflections took 61 ms to scan 1 urls, producing 3 keys and 6 values -18:03:21.043 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -18:03:21.061 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -18:03:21.342 [main] INFO o.r.Reflections - [scan,232] - Reflections took 277 ms to scan 227 urls, producing 0 keys and 0 values -18:03:21.357 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -18:03:21.376 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -18:03:21.393 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -18:03:21.618 [main] INFO o.r.Reflections - [scan,232] - Reflections took 222 ms to scan 227 urls, producing 0 keys and 0 values -18:03:21.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:03:21.624 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1043882455 -18:03:21.624 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1579823168 -18:03:21.625 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:03:21.626 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:03:21.640 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:03:24.229 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543404626_192.168.110.85_62132 -18:03:24.231 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Notify connected event to listeners. -18:03:24.231 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:03:24.232 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e006a4ee-1eb1-4109-85e9-a47b14a8be42_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1807896178 -18:03:24.385 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:03:29.314 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:03:29.315 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:03:29.315 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:03:29.576 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:03:35.460 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:05:22.867 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:05:24.991 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bd379fc3-4c15-4b38-90f2-552456999ee8_config-0 -18:05:25.091 [main] INFO o.r.Reflections - [scan,232] - Reflections took 63 ms to scan 1 urls, producing 3 keys and 6 values -18:05:25.135 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -18:05:25.153 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -18:05:25.429 [main] INFO o.r.Reflections - [scan,232] - Reflections took 270 ms to scan 227 urls, producing 0 keys and 0 values -18:05:25.443 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -18:05:25.463 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -18:05:25.479 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -18:05:25.704 [main] INFO o.r.Reflections - [scan,232] - Reflections took 221 ms to scan 227 urls, producing 0 keys and 0 values -18:05:25.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:05:25.710 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1602069459 -18:05:25.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/271614685 -18:05:25.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:05:25.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:05:25.728 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:05:28.399 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543528797_192.168.110.85_62247 -18:05:28.400 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Notify connected event to listeners. -18:05:28.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:05:28.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bd379fc3-4c15-4b38-90f2-552456999ee8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/505343709 -18:05:28.514 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:05:32.749 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:05:32.749 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:05:32.750 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:05:33.018 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:05:36.398 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:08:15.505 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:08:18.104 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7ab8318a-7851-4284-85b5-b55ec530f245_config-0 -18:08:18.226 [main] INFO o.r.Reflections - [scan,232] - Reflections took 71 ms to scan 1 urls, producing 3 keys and 6 values -18:08:18.270 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -18:08:18.292 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 3 keys and 10 values -18:08:18.770 [main] INFO o.r.Reflections - [scan,232] - Reflections took 474 ms to scan 227 urls, producing 0 keys and 0 values -18:08:18.784 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -18:08:18.803 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -18:08:18.823 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -18:08:19.131 [main] INFO o.r.Reflections - [scan,232] - Reflections took 303 ms to scan 227 urls, producing 0 keys and 0 values -18:08:19.135 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:08:19.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/494266287 -18:08:19.139 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1338065644 -18:08:19.140 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:08:19.141 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:08:19.153 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:08:22.716 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723543703121_192.168.110.85_62427 -18:08:22.717 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Notify connected event to listeners. -18:08:22.719 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:08:22.719 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7ab8318a-7851-4284-85b5-b55ec530f245_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/122513206 -18:08:22.827 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:08:38.951 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:08:38.951 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:08:38.952 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:08:40.139 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:08:46.813 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:57:23.014 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:57:24.772 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0 -18:57:24.857 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values -18:57:24.902 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -18:57:24.919 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -18:57:25.183 [main] INFO o.r.Reflections - [scan,232] - Reflections took 260 ms to scan 227 urls, producing 0 keys and 0 values -18:57:25.198 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -18:57:25.217 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -18:57:25.233 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -18:57:25.485 [main] INFO o.r.Reflections - [scan,232] - Reflections took 249 ms to scan 227 urls, producing 0 keys and 0 values -18:57:25.489 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:57:25.490 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1349872758 -18:57:25.491 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/950729555 -18:57:25.492 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:57:25.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:57:25.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:57:28.104 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723546648526_192.168.110.85_63381 -18:57:28.105 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Notify connected event to listeners. -18:57:28.106 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:57:28.107 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [04c8fd13-af22-4d49-8b35-9b7166a7cae1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/2144962543 -18:57:28.220 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:57:32.387 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:57:32.387 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:57:32.388 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:57:32.634 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:57:35.909 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:58:22.242 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:58:24.008 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2e90acad-03a0-443c-bf23-be4484f01dd3_config-0 -18:58:24.111 [main] INFO o.r.Reflections - [scan,232] - Reflections took 71 ms to scan 1 urls, producing 3 keys and 6 values -18:58:24.163 [main] INFO o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 4 keys and 9 values -18:58:24.188 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 3 keys and 10 values -18:58:24.446 [main] INFO o.r.Reflections - [scan,232] - Reflections took 253 ms to scan 227 urls, producing 0 keys and 0 values -18:58:24.461 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -18:58:24.480 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -18:58:24.496 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -18:58:24.719 [main] INFO o.r.Reflections - [scan,232] - Reflections took 219 ms to scan 227 urls, producing 0 keys and 0 values -18:58:24.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:58:24.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/281049997 -18:58:24.724 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1913386579 -18:58:24.725 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:58:24.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:58:24.739 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:58:27.383 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723546707805_192.168.110.85_63423 -18:58:27.384 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Notify connected event to listeners. -18:58:27.385 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:58:27.386 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2e90acad-03a0-443c-bf23-be4484f01dd3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/428089645 -18:58:27.501 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:58:31.610 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:58:31.611 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:58:31.611 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:58:31.893 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:58:35.333 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:59:44.964 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -18:59:46.660 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0 -18:59:46.747 [main] INFO o.r.Reflections - [scan,232] - Reflections took 56 ms to scan 1 urls, producing 3 keys and 6 values -18:59:46.797 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -18:59:46.816 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -18:59:47.081 [main] INFO o.r.Reflections - [scan,232] - Reflections took 261 ms to scan 227 urls, producing 0 keys and 0 values -18:59:47.094 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -18:59:47.127 [main] INFO o.r.Reflections - [scan,232] - Reflections took 29 ms to scan 1 urls, producing 1 keys and 7 values -18:59:47.143 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -18:59:47.362 [main] INFO o.r.Reflections - [scan,232] - Reflections took 216 ms to scan 227 urls, producing 0 keys and 0 values -18:59:47.364 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -18:59:47.365 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1647303553 -18:59:47.366 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/523331047 -18:59:47.367 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:59:47.368 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:59:47.381 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -18:59:49.974 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723546790390_192.168.110.85_63465 -18:59:49.975 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Notify connected event to listeners. -18:59:49.976 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:59:49.977 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4e1dff44-fa6a-4a88-9b08-9b96480ce14a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/976133979 -18:59:50.097 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -18:59:56.435 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -18:59:56.435 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:59:56.436 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -18:59:57.131 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:00:01.878 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:09:18.390 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:09:20.264 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0 -19:09:20.354 [main] INFO o.r.Reflections - [scan,232] - Reflections took 59 ms to scan 1 urls, producing 3 keys and 6 values -19:09:20.397 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -19:09:20.415 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -19:09:20.681 [main] INFO o.r.Reflections - [scan,232] - Reflections took 262 ms to scan 227 urls, producing 0 keys and 0 values -19:09:20.696 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -19:09:20.713 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -19:09:20.730 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -19:09:20.951 [main] INFO o.r.Reflections - [scan,232] - Reflections took 218 ms to scan 227 urls, producing 0 keys and 0 values -19:09:20.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:09:20.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1994085390 -19:09:20.957 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/271944754 -19:09:20.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:09:20.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:09:20.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:09:23.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723547364381_192.168.110.85_63666 -19:09:23.978 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Notify connected event to listeners. -19:09:23.980 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:09:23.981 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2c7db4bd-b005-4158-baa0-1baac589e6f5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1201360998 -19:09:24.402 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:09:29.958 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:09:29.959 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:09:29.959 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:09:30.256 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:09:35.284 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:11:39.679 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:11:41.574 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0 -19:11:41.669 [main] INFO o.r.Reflections - [scan,232] - Reflections took 63 ms to scan 1 urls, producing 3 keys and 6 values -19:11:41.713 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 4 keys and 9 values -19:11:41.734 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -19:11:42.060 [main] INFO o.r.Reflections - [scan,232] - Reflections took 320 ms to scan 227 urls, producing 0 keys and 0 values -19:11:42.074 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -19:11:42.095 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -19:11:42.113 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -19:11:42.351 [main] INFO o.r.Reflections - [scan,232] - Reflections took 234 ms to scan 227 urls, producing 0 keys and 0 values -19:11:42.355 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:11:42.356 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1134601005 -19:11:42.357 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/963573938 -19:11:42.358 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:11:42.359 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:11:42.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:11:45.384 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723547505539_192.168.110.85_63775 -19:11:45.386 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Notify connected event to listeners. -19:11:45.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:11:45.388 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a46dd46c-91f8-4b79-a63e-3d890a563db6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1409848452 -19:11:46.141 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:11:50.707 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:11:50.707 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:11:50.708 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:11:50.957 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:11:54.388 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:25:22.814 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:25:24.625 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b2160bc6-7474-4d35-8962-2bc275c148ae_config-0 -19:25:24.712 [main] INFO o.r.Reflections - [scan,232] - Reflections took 57 ms to scan 1 urls, producing 3 keys and 6 values -19:25:24.757 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -19:25:24.775 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -19:25:25.040 [main] INFO o.r.Reflections - [scan,232] - Reflections took 261 ms to scan 227 urls, producing 0 keys and 0 values -19:25:25.054 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values -19:25:25.072 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 7 values -19:25:25.087 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 2 keys and 8 values -19:25:25.318 [main] INFO o.r.Reflections - [scan,232] - Reflections took 227 ms to scan 227 urls, producing 0 keys and 0 values -19:25:25.322 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:25:25.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1840217399 -19:25:25.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/598049166 -19:25:25.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:25:25.326 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:25:25.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:25:27.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723548328391_192.168.110.85_64117 -19:25:27.953 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Notify connected event to listeners. -19:25:27.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:25:27.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b2160bc6-7474-4d35-8962-2bc275c148ae_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1835529707 -19:25:28.086 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:25:32.177 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:25:32.178 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:25:32.178 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:25:32.422 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:25:35.933 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:28:12.285 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:28:19.866 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0 -19:28:19.970 [main] INFO o.r.Reflections - [scan,232] - Reflections took 62 ms to scan 1 urls, producing 3 keys and 6 values -19:28:20.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -19:28:20.050 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values -19:28:20.580 [main] INFO o.r.Reflections - [scan,232] - Reflections took 523 ms to scan 227 urls, producing 0 keys and 0 values -19:28:20.595 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -19:28:20.620 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values -19:28:20.673 [main] INFO o.r.Reflections - [scan,232] - Reflections took 49 ms to scan 1 urls, producing 2 keys and 8 values -19:28:20.992 [main] INFO o.r.Reflections - [scan,232] - Reflections took 314 ms to scan 227 urls, producing 0 keys and 0 values -19:28:20.994 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:28:20.996 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1994249754 -19:28:20.997 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1066575950 -19:28:20.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:28:21.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:28:21.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:28:26.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:28:26.510 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723548506914_192.168.110.85_64189 -19:28:26.512 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Notify connected event to listeners. -19:28:26.513 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:28:26.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [277a93e7-f341-42a2-a1d6-f7b45c191df8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/879706537 -19:28:26.709 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:28:35.791 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:28:35.791 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:28:35.792 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:28:36.058 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:28:41.270 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:33:00.484 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:33:04.640 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of da93d756-9bf3-4913-8e8d-20cace981e9a_config-0 -19:33:04.824 [main] INFO o.r.Reflections - [scan,232] - Reflections took 139 ms to scan 1 urls, producing 3 keys and 6 values -19:33:04.903 [main] INFO o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 4 keys and 9 values -19:33:04.925 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values -19:33:05.699 [main] INFO o.r.Reflections - [scan,232] - Reflections took 770 ms to scan 227 urls, producing 0 keys and 0 values -19:33:05.736 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 1 keys and 5 values -19:33:05.803 [main] INFO o.r.Reflections - [scan,232] - Reflections took 60 ms to scan 1 urls, producing 1 keys and 7 values -19:33:05.821 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -19:33:06.187 [main] INFO o.r.Reflections - [scan,232] - Reflections took 362 ms to scan 227 urls, producing 0 keys and 0 values -19:33:06.191 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:33:06.192 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1994085390 -19:33:06.193 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/271944754 -19:33:06.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:33:06.195 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:33:06.219 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:33:09.271 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723548789706_192.168.110.85_64395 -19:33:09.272 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Notify connected event to listeners. -19:33:09.274 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:33:09.274 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [da93d756-9bf3-4913-8e8d-20cace981e9a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1201360998 -19:33:09.393 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:33:13.900 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:33:13.900 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:33:13.901 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:33:14.205 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:33:18.031 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:37:54.895 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:37:56.626 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0 -19:37:56.714 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -19:37:56.761 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -19:37:56.779 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -19:37:57.060 [main] INFO o.r.Reflections - [scan,232] - Reflections took 277 ms to scan 227 urls, producing 0 keys and 0 values -19:37:57.075 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -19:37:57.095 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -19:37:57.112 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -19:37:57.340 [main] INFO o.r.Reflections - [scan,232] - Reflections took 225 ms to scan 227 urls, producing 0 keys and 0 values -19:37:57.344 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:37:57.345 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1419166053 -19:37:57.346 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1369977147 -19:37:57.347 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:37:57.348 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:37:57.360 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:37:59.951 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549080401_192.168.110.85_64533 -19:37:59.952 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Notify connected event to listeners. -19:37:59.954 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:37:59.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d9d7c570-4760-49a2-ab1a-78ae62102ae2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1223360538 -19:38:00.089 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:38:04.678 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:38:04.678 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:38:04.678 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:38:04.942 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:38:08.385 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:41:27.003 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:41:28.855 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0 -19:41:28.944 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -19:41:29.006 [main] INFO o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 4 keys and 9 values -19:41:29.024 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values -19:41:29.356 [main] INFO o.r.Reflections - [scan,232] - Reflections took 327 ms to scan 227 urls, producing 0 keys and 0 values -19:41:29.370 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -19:41:29.392 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -19:41:29.408 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -19:41:29.635 [main] INFO o.r.Reflections - [scan,232] - Reflections took 224 ms to scan 227 urls, producing 0 keys and 0 values -19:41:29.639 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:41:29.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/281896787 -19:41:29.641 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1907178890 -19:41:29.642 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:41:29.643 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:41:29.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:41:34.263 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:41:34.823 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549295078_192.168.110.85_64752 -19:41:34.825 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Notify connected event to listeners. -19:41:34.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:41:34.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1079b3bd-b5bb-4c41-aada-8b5c5d362f29_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1065443868 -19:41:35.215 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:41:40.454 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:41:40.455 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:41:40.455 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:41:40.744 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:41:46.044 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:43:52.283 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:43:54.157 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0 -19:43:54.252 [main] INFO o.r.Reflections - [scan,232] - Reflections took 68 ms to scan 1 urls, producing 3 keys and 6 values -19:43:54.439 [main] INFO o.r.Reflections - [scan,232] - Reflections took 132 ms to scan 1 urls, producing 4 keys and 9 values -19:43:54.463 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -19:43:54.855 [main] INFO o.r.Reflections - [scan,232] - Reflections took 356 ms to scan 227 urls, producing 0 keys and 0 values -19:43:54.869 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -19:43:54.889 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -19:43:54.905 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -19:43:55.163 [main] INFO o.r.Reflections - [scan,232] - Reflections took 255 ms to scan 227 urls, producing 0 keys and 0 values -19:43:55.164 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:43:55.166 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/2094310615 -19:43:55.167 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/830381116 -19:43:55.168 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:43:55.169 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:43:55.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:43:58.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549438600_192.168.110.85_64878 -19:43:58.177 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Notify connected event to listeners. -19:43:58.178 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:43:58.178 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36abda93-9899-4b8b-bf8d-a780f43a05e3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1768797728 -19:43:58.308 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:44:03.053 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:44:03.054 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:44:03.054 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:44:03.335 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:44:11.022 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:44:11.112 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:46:03.092 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:46:08.584 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0 -19:46:08.693 [main] INFO o.r.Reflections - [scan,232] - Reflections took 71 ms to scan 1 urls, producing 3 keys and 6 values -19:46:08.753 [main] INFO o.r.Reflections - [scan,232] - Reflections took 32 ms to scan 1 urls, producing 4 keys and 9 values -19:46:08.790 [main] INFO o.r.Reflections - [scan,232] - Reflections took 32 ms to scan 1 urls, producing 3 keys and 10 values -19:46:09.209 [main] INFO o.r.Reflections - [scan,232] - Reflections took 415 ms to scan 227 urls, producing 0 keys and 0 values -19:46:09.224 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -19:46:09.258 [main] INFO o.r.Reflections - [scan,232] - Reflections took 30 ms to scan 1 urls, producing 1 keys and 7 values -19:46:09.278 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -19:46:09.519 [main] INFO o.r.Reflections - [scan,232] - Reflections took 237 ms to scan 227 urls, producing 0 keys and 0 values -19:46:09.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:46:09.524 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/906370291 -19:46:09.525 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1905114489 -19:46:09.526 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:46:09.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:46:09.542 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:46:12.265 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549572730_192.168.110.85_64973 -19:46:12.266 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Notify connected event to listeners. -19:46:12.267 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:46:12.268 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f55490d7-2cd3-4e08-bef7-8f289a92aa22_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/1062831184 -19:46:12.384 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:46:16.672 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:46:16.673 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:46:16.673 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:46:16.926 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:46:23.378 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:46:23.477 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:46:59.927 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:47:01.979 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 23b35137-708b-47ec-87cf-bba44990b8c9_config-0 -19:47:02.079 [main] INFO o.r.Reflections - [scan,232] - Reflections took 66 ms to scan 1 urls, producing 3 keys and 6 values -19:47:02.124 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 4 keys and 9 values -19:47:02.142 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 3 keys and 10 values -19:47:02.423 [main] INFO o.r.Reflections - [scan,232] - Reflections took 277 ms to scan 227 urls, producing 0 keys and 0 values -19:47:02.438 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -19:47:02.462 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -19:47:02.479 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 2 keys and 8 values -19:47:02.705 [main] INFO o.r.Reflections - [scan,232] - Reflections took 222 ms to scan 227 urls, producing 0 keys and 0 values -19:47:02.707 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:47:02.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/705062537 -19:47:02.709 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1043882455 -19:47:02.710 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:47:02.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:47:02.724 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:47:05.298 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549625753_192.168.110.85_65022 -19:47:05.299 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Notify connected event to listeners. -19:47:05.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:47:05.302 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23b35137-708b-47ec-87cf-bba44990b8c9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/569305423 -19:47:05.413 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:47:09.720 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:47:09.722 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:47:09.722 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:47:09.975 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:47:17.814 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:47:25.829 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 29039468-5a2c-496e-b5b3-810665cb9fdd -19:47:25.830 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] RpcClient init label, labels = {module=naming, source=sdk} -19:47:25.833 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:47:25.833 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:47:25.834 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:47:25.834 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:47:25.965 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549646514_192.168.110.85_65038 -19:47:25.968 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Notify connected event to listeners. -19:47:25.968 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:47:25.970 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/569305423 -19:47:26.024 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9600"] -19:47:26.075 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-other 192.168.204.1:9600 register finished -19:47:26.595 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Receive server push request, request = NotifySubscriberRequest, requestId = 224 -19:47:26.601 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [29039468-5a2c-496e-b5b3-810665cb9fdd] Ack server push request, request = NotifySubscriberRequest, requestId = 224 -19:47:28.180 [main] INFO c.r.o.RuoYiOtherApplication - [logStarted,61] - Started RuoYiOtherApplication in 30.039 seconds (JVM running for 32.521) -19:47:28.208 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other-dev.yml, group=DEFAULT_GROUP -19:47:28.210 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other, group=DEFAULT_GROUP -19:47:28.212 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other.yml, group=DEFAULT_GROUP -19:47:29.318 [RMI TCP Connection(13)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:47:29.352 [RMI TCP Connection(14)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:47:29.836 [RMI TCP Connection(14)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -19:47:36.902 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -19:47:36.911 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -19:47:37.243 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -19:47:37.244 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@634954b9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:47:37.244 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723549646514_192.168.110.85_65038 -19:47:37.254 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@38b5fc9d[Running, pool size = 6, active threads = 1, queued tasks = 0, completed tasks = 12] -19:47:37.269 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723549646514_192.168.110.85_65038]Ignore complete event,isRunning:false,isAbandon=false -19:47:37.509 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -19:47:37.524 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -19:47:47.616 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -19:47:49.333 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0 -19:47:49.416 [main] INFO o.r.Reflections - [scan,232] - Reflections took 54 ms to scan 1 urls, producing 3 keys and 6 values -19:47:49.470 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 4 keys and 9 values -19:47:49.490 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -19:47:49.752 [main] INFO o.r.Reflections - [scan,232] - Reflections took 258 ms to scan 227 urls, producing 0 keys and 0 values -19:47:49.766 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -19:47:49.786 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -19:47:49.802 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -19:47:50.016 [main] INFO o.r.Reflections - [scan,232] - Reflections took 210 ms to scan 227 urls, producing 0 keys and 0 values -19:47:50.017 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -19:47:50.018 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/1377212248 -19:47:50.019 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1054477035 -19:47:50.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:47:50.021 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:47:50.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:47:52.834 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549673276_192.168.110.85_65096 -19:47:52.842 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Notify connected event to listeners. -19:47:52.847 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:47:52.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3d7c2736-e6ed-4abd-88b6-8c4c5de7b996_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/2111669429 -19:47:53.320 [main] INFO c.r.o.RuoYiOtherApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -19:47:57.848 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9600"] -19:47:57.849 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:47:57.849 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -19:47:58.107 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:48:08.368 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:48:12.934 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2b49a851-1283-45fa-8fb6-f51eb80e72da -19:48:12.934 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] RpcClient init label, labels = {module=naming, source=sdk} -19:48:12.937 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:48:12.937 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:48:12.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:48:12.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -19:48:13.062 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723549693617_192.168.110.85_65105 -19:48:13.062 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Notify connected event to listeners. -19:48:13.062 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:48:13.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$349/2111669429 -19:48:13.104 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9600"] -19:48:13.137 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-other 192.168.204.1:9600 register finished -19:48:13.597 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Receive server push request, request = NotifySubscriberRequest, requestId = 225 -19:48:13.603 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2b49a851-1283-45fa-8fb6-f51eb80e72da] Ack server push request, request = NotifySubscriberRequest, requestId = 225 -19:48:14.753 [main] INFO c.r.o.RuoYiOtherApplication - [logStarted,61] - Started RuoYiOtherApplication in 28.775 seconds (JVM running for 30.657) -19:48:14.769 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other-dev.yml, group=DEFAULT_GROUP -19:48:14.770 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other, group=DEFAULT_GROUP -19:48:14.771 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-other.yml, group=DEFAULT_GROUP -19:48:15.726 [RMI TCP Connection(7)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:48:15.757 [RMI TCP Connection(8)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:48:16.192 [RMI TCP Connection(8)-192.168.110.85] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -19:48:31.539 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -19:48:31.550 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -19:48:31.884 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -19:48:31.884 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2a563acc[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:48:31.885 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723549693617_192.168.110.85_65105 -19:48:31.890 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723549693617_192.168.110.85_65105]Ignore complete event,isRunning:false,isAbandon=false -19:48:31.893 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6b323d8c[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 13] -19:48:32.110 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -19:48:32.175 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. diff --git a/logs/ruoyi-system/error.2024-08-15.log b/logs/ruoyi-system/error.2024-08-15.log deleted file mode 100644 index feb3836..0000000 --- a/logs/ruoyi-system/error.2024-08-15.log +++ /dev/null @@ -1,6266 +0,0 @@ -10:59:34.966 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:73) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:199) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:186) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:158) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:116) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:51) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47) - at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:95) - at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:604) - at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:306) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:37.019 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:73) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:199) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:186) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:158) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:116) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:51) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47) - at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:95) - at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:604) - at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:306) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:39.085 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.ensureRpcClient(ClientWorker.java:885) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.getOneRunningClient(ClientWorker.java:1044) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.queryConfig(ClientWorker.java:940) - at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:397) - at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:166) - at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:94) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85) - at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:73) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:199) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:186) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:158) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:116) - at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:51) - at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47) - at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:95) - at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:604) - at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:306) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:39.254 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5540f507b812ed0c57609d9c32a0c8e, Client-RequestTS=1723690779100, exConfigInfo=true, notify=false, Timestamp=1723690779101}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:39.362 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5540f507b812ed0c57609d9c32a0c8e, Client-RequestTS=1723690779100, exConfigInfo=true, notify=false, Timestamp=1723690779101}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:39.471 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5540f507b812ed0c57609d9c32a0c8e, Client-RequestTS=1723690779100, exConfigInfo=true, notify=false, Timestamp=1723690779101}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:39.581 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff29a8a1fcf95840160253c59cba205b, Client-RequestTS=1723690779476, exConfigInfo=true, notify=false, Timestamp=1723690779476}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:39.689 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff29a8a1fcf95840160253c59cba205b, Client-RequestTS=1723690779476, exConfigInfo=true, notify=false, Timestamp=1723690779476}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:39.798 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff29a8a1fcf95840160253c59cba205b, Client-RequestTS=1723690779476, exConfigInfo=true, notify=false, Timestamp=1723690779476}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:39.908 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11bdd5120b62f84cd571523f5f618eff, Client-RequestTS=1723690779799, exConfigInfo=true, notify=false, Timestamp=1723690779799}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:40.017 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11bdd5120b62f84cd571523f5f618eff, Client-RequestTS=1723690779799, exConfigInfo=true, notify=false, Timestamp=1723690779799}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:40.126 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11bdd5120b62f84cd571523f5f618eff, Client-RequestTS=1723690779799, exConfigInfo=true, notify=false, Timestamp=1723690779799}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:40.237 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e61069c9fdbc069cc6442ba6ede52d3, Client-RequestTS=1723690780126, exConfigInfo=true, notify=false, Timestamp=1723690780126}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:40.347 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e61069c9fdbc069cc6442ba6ede52d3, Client-RequestTS=1723690780126, exConfigInfo=true, notify=false, Timestamp=1723690780126}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:40.456 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e61069c9fdbc069cc6442ba6ede52d3, Client-RequestTS=1723690780126, exConfigInfo=true, notify=false, Timestamp=1723690780126}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:41.133 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:43.311 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:45.582 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:47.966 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:50.445 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:53.009 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:53.150 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:96) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.<init>(NamingGrpcClientProxy.java:89) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.<init>(NamingClientProxyDelegate.java:76) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:95) - at com.alibaba.nacos.client.naming.NacosNamingService.<init>(NacosNamingService.java:81) - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.discovery.NacosWatch.start(NacosWatch.java:130) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:55.216 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:96) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.<init>(NamingGrpcClientProxy.java:89) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.<init>(NamingClientProxyDelegate.java:76) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:95) - at com.alibaba.nacos.client.naming.NacosNamingService.<init>(NacosNamingService.java:81) - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.discovery.NacosWatch.start(NacosWatch.java:130) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:55.687 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:57.287 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:96) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.<init>(NamingGrpcClientProxy.java:89) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.<init>(NamingClientProxyDelegate.java:76) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:95) - at com.alibaba.nacos.client.naming.NacosNamingService.<init>(NacosNamingService.java:81) - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.discovery.NacosWatch.start(NacosWatch.java:130) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:57.414 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:57.523 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:57.630 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:57.630 [main] ERROR c.a.c.n.d.NacosWatch - [start,136] - namingService subscribe failed, properties:NacosDiscoveryProperties{serverAddr='127.0.0.1:8848', username='', password='', endpoint='', namespace='87dfc9b5-3336-4273-906c-a31cc3925c47', watchDelay=30000, logName='', service='ruoyi-system', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.110.80', networkInterface='', port=-1, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true} -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:230) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:215) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:147) - at com.alibaba.nacos.client.naming.NacosNamingService.subscribe(NacosNamingService.java:393) - at com.alibaba.cloud.nacos.discovery.NacosWatch.start(NacosWatch.java:132) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:STARTING - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 20 common frames omitted -10:59:57.770 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = InstanceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:57.880 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = InstanceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:57.989 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = InstanceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:57.990 [main] ERROR c.a.c.n.r.NacosServiceRegistry - [register,80] - nacos registry, ruoyi-system register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='127.0.0.1:8848', username='', password='', endpoint='', namespace='87dfc9b5-3336-4273-906c-a31cc3925c47', watchDelay=30000, logName='', service='ruoyi-system', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.110.80', networkInterface='', port=8080, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}}, -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:129) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.registerService(NamingGrpcClientProxy.java:115) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.registerService(NamingClientProxyDelegate.java:94) - at com.alibaba.nacos.client.naming.NacosNamingService.registerInstance(NacosNamingService.java:145) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:74) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:232) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:133) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.bind(AbstractAutoServiceRegistration.java:98) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:86) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:47) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:46) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:STARTING - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 32 common frames omitted -10:59:58.421 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -10:59:58.454 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -10:59:58.531 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -10:59:58.640 [com.alibaba.nacos.client.naming.updater.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ServiceQueryRequest{headers={app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -10:59:58.646 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.lang.InterruptedException: null - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:438) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -10:59:58.646 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [connectToServer,295] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68]Fail to connect to server!,error={} -java.util.concurrent.RejectedExecutionException: Task com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor@5d34f400 rejected from java.util.concurrent.ThreadPoolExecutor@70c3483b[Shutting down, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 6] - at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2063) - at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:830) - at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1379) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.schedule(SerializingExecutor.java:93) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.execute(SerializingExecutor.java:86) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.closedInternal(ClientCallImpl.java:696) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.closed(ClientCallImpl.java:646) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.closed(ClientCallImpl.java:639) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedStream.cancel(DelayedStream.java:302) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientTransport$PendingStream.cancel(DelayedClientTransport.java:363) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientTransport.shutdownNow(DelayedClientTransport.java:241) - at com.alibaba.nacos.shaded.io.grpc.internal.ManagedChannelImpl$UncommittedRetriableStreamsRegistry.onShutdownNow(ManagedChannelImpl.java:1021) - at com.alibaba.nacos.shaded.io.grpc.internal.ManagedChannelImpl.shutdownNow(ManagedChannelImpl.java:752) - at com.alibaba.nacos.shaded.io.grpc.internal.ManagedChannelImpl.shutdownNow(ManagedChannelImpl.java:105) - at com.alibaba.nacos.shaded.io.grpc.internal.ForwardingManagedChannel.shutdownNow(ForwardingManagedChannel.java:52) - at com.alibaba.nacos.shaded.io.grpc.internal.ManagedChannelOrphanWrapper.shutdownNow(ManagedChannelOrphanWrapper.java:66) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.shuntDownChannel(GrpcClient.java:130) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:266) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -11:00:00.705 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:96) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.<init>(NamingGrpcClientProxy.java:89) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.<init>(NamingClientProxyDelegate.java:76) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:95) - at com.alibaba.nacos.client.naming.NacosNamingService.<init>(NacosNamingService.java:81) - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.discovery.NacosWatch.stop(NacosWatch.java:173) - at com.alibaba.cloud.nacos.discovery.NacosWatch.destroy(NacosWatch.java:204) - at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:213) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1163) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1156) - at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1106) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:596) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -11:00:01.328 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -11:00:02.749 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:96) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.<init>(NamingGrpcClientProxy.java:89) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.<init>(NamingClientProxyDelegate.java:76) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:95) - at com.alibaba.nacos.client.naming.NacosNamingService.<init>(NacosNamingService.java:81) - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.discovery.NacosWatch.stop(NacosWatch.java:173) - at com.alibaba.cloud.nacos.discovery.NacosWatch.destroy(NacosWatch.java:204) - at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:213) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1163) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1156) - at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1106) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:596) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -11:00:04.302 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) - at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) - at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) - at java.util.concurrent.FutureTask.run(FutureTask.java) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) - at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -11:00:04.803 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 127.0.0.1 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:390) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:96) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.<init>(NamingGrpcClientProxy.java:89) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.<init>(NamingClientProxyDelegate.java:76) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:95) - at com.alibaba.nacos.client.naming.NacosNamingService.<init>(NacosNamingService.java:81) - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.discovery.NacosWatch.stop(NacosWatch.java:173) - at com.alibaba.cloud.nacos.discovery.NacosWatch.destroy(NacosWatch.java:204) - at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:213) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1163) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1156) - at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1106) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:596) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:533) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:490) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:700) - at com.alibaba.nacos.shaded.io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23) - at com.alibaba.nacos.shaded.io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40) - at com.alibaba.nacos.shaded.io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:399) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:510) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:66) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:630) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:518) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:692) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:681) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:9848 -Caused by: java.net.ConnectException: Connection refused: no further information - at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) - at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:336) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:685) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:632) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:549) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:511) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -11:00:04.927 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING -11:00:05.036 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING -11:00:05.146 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING -11:00:05.147 [main] ERROR c.a.c.n.d.NacosWatch - [stop,178] - namingService unsubscribe failed, properties:NacosDiscoveryProperties{serverAddr='127.0.0.1:8848', username='', password='', endpoint='', namespace='87dfc9b5-3336-4273-906c-a31cc3925c47', watchDelay=30000, logName='', service='ruoyi-system', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.110.80', networkInterface='', port=8080, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true} -com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doUnsubscribe(NamingGrpcClientProxy.java:260) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.unsubscribe(NamingGrpcClientProxy.java:241) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.unsubscribe(NamingClientProxyDelegate.java:157) - at com.alibaba.nacos.client.naming.NacosNamingService.unsubscribe(NacosNamingService.java:417) - at com.alibaba.cloud.nacos.discovery.NacosWatch.stop(NacosWatch.java:174) - at com.alibaba.cloud.nacos.discovery.NacosWatch.destroy(NacosWatch.java:204) - at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:213) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1163) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1156) - at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1106) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:596) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:STARTING - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 21 common frames omitted -11:00:05.497 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is java.lang.reflect.UndeclaredThrowableException - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:181) - at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:54) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:356) - at java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:155) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:123) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:935) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: java.lang.reflect.UndeclaredThrowableException: null - at org.springframework.util.ReflectionUtils.rethrowRuntimeException(ReflectionUtils.java:147) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:82) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:232) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:133) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.bind(AbstractAutoServiceRegistration.java:98) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:86) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:47) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:46) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:178) - ... 14 common frames omitted -Caused by: com.alibaba.nacos.api.exception.NacosException: Request nacos server failed: - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:290) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:129) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.registerService(NamingGrpcClientProxy.java:115) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.registerService(NamingClientProxyDelegate.java:94) - at com.alibaba.nacos.client.naming.NacosNamingService.registerInstance(NacosNamingService.java:145) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:74) - ... 27 common frames omitted -Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:STARTING - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:650) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:630) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:280) - ... 32 common frames omitted -11:02:09.985 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigController': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'configMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.apache.ibatis.type.TypeException: The alias 'SysLoginLog' is already mapped to the value 'com.ruoyi.system.api.domain.SysLoginLog'. - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'configMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.apache.ibatis.type.TypeException: The alias 'SysLoginLog' is already mapped to the value 'com.ruoyi.system.api.domain.SysLoginLog'. - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:660) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\com\ruoyi\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.apache.ibatis.type.TypeException: The alias 'SysLoginLog' is already mapped to the value 'com.ruoyi.system.api.domain.SysLoginLog'. - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1534) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1417) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.apache.ibatis.type.TypeException: The alias 'SysLoginLog' is already mapped to the value 'com.ruoyi.system.api.domain.SysLoginLog'. - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1519) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.apache.ibatis.type.TypeException: The alias 'SysLoginLog' is already mapped to the value 'com.ruoyi.system.api.domain.SysLoginLog'. - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) - ... 58 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: The alias 'SysLoginLog' is already mapped to the value 'com.ruoyi.system.api.domain.SysLoginLog'. - at org.apache.ibatis.type.TypeAliasRegistry.registerAlias(TypeAliasRegistry.java:165) - at org.apache.ibatis.type.TypeAliasRegistry.registerAlias(TypeAliasRegistry.java:155) - at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) - at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) - at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) - at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) - at java.util.HashMap$KeySpliterator.forEachRemaining(HashMap.java:1553) - at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481) - at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) - at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) - at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) - at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) - at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:497) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:445) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:609) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:218) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) - ... 59 common frames omitted -14:52:42.619 [http-nio-9101-exec-5] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20006} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:52:42.751 [http-nio-9101-exec-5] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:53:08.019 [http-nio-9101-exec-7] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20007} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:08.033 [http-nio-9101-exec-7] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:53:14.329 [http-nio-9101-exec-9] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20008} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:14.332 [http-nio-9101-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:53:16.239 [http-nio-9101-exec-1] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20009} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:53:16.247 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:54:08.285 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20010} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:54:08.295 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:55:46.035 [http-nio-9101-exec-6] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20012} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:55:46.046 [http-nio-9101-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:36.721 [http-nio-9101-exec-8] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20013} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:36.730 [http-nio-9101-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:38.425 [http-nio-9101-exec-10] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20014} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:38.437 [http-nio-9101-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:39.346 [http-nio-9101-exec-3] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20015} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:39.352 [http-nio-9101-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:40.036 [http-nio-9101-exec-4] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20016} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:40.049 [http-nio-9101-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:40.653 [http-nio-9101-exec-6] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20017} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:40.666 [http-nio-9101-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:41.135 [http-nio-9101-exec-8] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20018} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:41.146 [http-nio-9101-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:41.530 [http-nio-9101-exec-10] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20019} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:41.547 [http-nio-9101-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:41.870 [http-nio-9101-exec-3] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20020} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:41.876 [http-nio-9101-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:56:42.142 [http-nio-9101-exec-4] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20021} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:56:42.153 [http-nio-9101-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:58:08.637 [http-nio-9101-exec-7] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20023} execute error. select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, - d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, - r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId - from sys_user u - left join sys_dept d on u.dept_id = d.dept_id - left join sys_user_role ur on u.user_id = ur.user_id - left join sys_role r on r.role_id = ur.role_id - - where u.user_name = ? and u.del_flag = '0' -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:58:08.646 [http-nio-9101-exec-7] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/info/admin',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysUserMapper.xml] -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectUserByUserName-Inline -### The error occurred while setting parameters -### SQL: select u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status, r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status ,u.roleType as roleType,u.objectId AS objectId from sys_user u left join sys_dept d on u.dept_id = d.dept_id left join sys_user_role ur on u.user_id = ur.user_id left join sys_role r on r.role_id = ur.role_id where u.user_name = ? and u.del_flag = '0' -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectOne(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectUserByUserName(Unknown Source) - at com.ruoyi.system.service.impl.SysUserServiceImpl.selectUserByUserName(SysUserServiceImpl.java:140) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$b4a378b2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$b380b836.selectUserByUserName(<generated>) - at com.ruoyi.system.controller.SysUserController.info(SysUserController.java:474) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.ruoyi.common.security.aspect.InnerAuthAspect.innerAround(InnerAuthAspect.java:40) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$7a85dcd9.info(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy277.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy275.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy274.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 93 common frames omitted -14:59:49.189 [http-nio-9101-exec-3] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20008} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:59:49.761 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/roleInfoFromUserId',不支持'GET'请求 diff --git a/logs/ruoyi-system/error.2024-08-16.log b/logs/ruoyi-system/error.2024-08-16.log deleted file mode 100644 index 3565c72..0000000 --- a/logs/ruoyi-system/error.2024-08-16.log +++ /dev/null @@ -1,4431 +0,0 @@ -14:30:00.863 [http-nio-9101-exec-10] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20018} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:37:37.328 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20020} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:38:14.151 [http-nio-9101-exec-9] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20021} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:42:42.889 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20023} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:44:16.744 [http-nio-9101-exec-8] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20025} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor334.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor332.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:45:53.418 [http-nio-9101-exec-4] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20027} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor334.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor332.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:52:28.515 [http-nio-9101-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:52:34.329 [http-nio-9101-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:52:54.242 [http-nio-9101-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:53:04.514 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:53:35.813 [http-nio-9101-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:54:00.005 [http-nio-9101-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:58:20.626 [http-nio-9101-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -14:58:36.131 [http-nio-9101-exec-8] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20029} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor227.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor334.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor332.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$fa3ee161.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$8222a354.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:59:46.520 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/role/getSysRoleByIds',不支持'POST'请求 -15:01:49.523 [http-nio-9101-exec-1] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20005} execute error. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id - - where id in -java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$4a4abbda.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$5a1a824f.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:01:49.570 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.UncategorizedSQLException: -### Error querying database. Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where id in -### Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -; uncategorized SQLException; SQL state [HY000]; error code [0]; com.alibaba.druid.sql.parser.EOFParserException: EOF; nested exception is java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$4a4abbda.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$5a1a824f.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:09:18.262 [http-nio-9101-exec-1] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20006} execute error. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id - - where r.id in -java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$c87098f3.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$c8afd757.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:09:18.310 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.UncategorizedSQLException: -### Error querying database. Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where r.id in -### Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -; uncategorized SQLException; SQL state [HY000]; error code [0]; com.alibaba.druid.sql.parser.EOFParserException: EOF; nested exception is java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$c87098f3.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$c8afd757.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:11:28.390 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20008} execute error. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id - - where r.id in -java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$c87098f3.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$c8afd757.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:11:28.406 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.UncategorizedSQLException: -### Error querying database. Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where r.id in -### Cause: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF -; uncategorized SQLException; SQL state [HY000]; error code [0]; com.alibaba.druid.sql.parser.EOFParserException: EOF; nested exception is java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$c87098f3.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$c8afd757.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: com.alibaba.druid.sql.parser.EOFParserException: EOF - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:13:24.289 [http-nio-9101-exec-1] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20005} execute error. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$37fbfabf.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$93f2c0e1.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:13:24.345 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$37fbfabf.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$93f2c0e1.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:13:52.110 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20006} execute error. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id -java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$37fbfabf.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$93f2c0e1.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:13:52.126 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$37fbfabf.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$93f2c0e1.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:14:51.920 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20005} execute error. select distinct r.role_id, r.role_name, r.role_key, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, - r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id -java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$fb9b00a5.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$63edc620.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:14:51.971 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.data_scope, r.menu_check_strictly, r.dept_check_strictly, r.status, r.del_flag, r.create_time, r.remark ,r.carDataAuth,r.carTrainOperAuth,r.contractDataAuth from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$fb9b00a5.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$63edc620.getSysRoleByIds(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.menu_check_strictly' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -16:14:10.039 [http-nio-9101-exec-9] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20011} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:15:29.316 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20013} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:17:26.734 [http-nio-9101-exec-5] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20015} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:18:03.953 [http-nio-9101-exec-9] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20016} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:19:18.178 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20018} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:22:33.027 [http-nio-9101-exec-6] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20020} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:26:14.306 [http-nio-9101-exec-10] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20022} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:28:36.676 [http-nio-9101-exec-4] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20024} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:28:57.652 [http-nio-9101-exec-7] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20025} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:34:01.142 [http-nio-9101-exec-1] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20027} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:41:13.334 [http-nio-9101-exec-5] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20029} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:45:46.249 [http-nio-9101-exec-8] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20031} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -16:59:38.546 [http-nio-9101-exec-5] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20034} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -17:03:02.319 [http-nio-9101-exec-1] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20037} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -17:26:57.134 [http-nio-9101-exec-7] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20043} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) diff --git a/logs/ruoyi-system/error.log b/logs/ruoyi-system/error.log deleted file mode 100644 index e213aac..0000000 --- a/logs/ruoyi-system/error.log +++ /dev/null @@ -1,2986 +0,0 @@ -09:04:00.709 [http-nio-9101-exec-3] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20049} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:07:02.111 [http-nio-9101-exec-7] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20051} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.GeneratedMethodAccessor384.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.GeneratedMethodAccessor380.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:09:03.831 [http-nio-9101-exec-3] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20054} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.GeneratedMethodAccessor384.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.GeneratedMethodAccessor380.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:17:40.925 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20057} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.GeneratedMethodAccessor384.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.GeneratedMethodAccessor380.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:19:09.890 [http-nio-9101-exec-7] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20059} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor236.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.GeneratedMethodAccessor384.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$681612e1.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a162624e.updateSysUser(<generated>) - at sun.reflect.GeneratedMethodAccessor380.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:51:43.708 [http-nio-9101-exec-9] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10006, pstmt-20070} execute error. select distinct r.role_id, r.role_name, r.role_key, r.data_scope, - r.status, r.del_flag, r.create_time, r.remark - from sys_role r - left join sys_user_role ur on ur.role_id = r.role_id - left join sys_user u on u.user_id = ur.user_id - left join sys_dept d on u.dept_id = d.dept_id - - - where r.id in - ( - ? - ) -java.sql.SQLSyntaxErrorException: Unknown column 'r.id' in 'where clause' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor291.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor302.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$2d44a37f.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$ea19c9e4.getSysRoleByIds(<generated>) - at sun.reflect.GeneratedMethodAccessor301.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:51:43.742 [http-nio-9101-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/getSysRoleByIds',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.id' in 'where clause' -### The error may exist in file [E:\IDEA Workspaces\mx_charging_pile\ruoyi-modules\ruoyi-system\target\classes\mapper\system\SysRoleMapper.xml] -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: select distinct r.role_id, r.role_name, r.role_key, r.data_scope, r.status, r.del_flag, r.create_time, r.remark from sys_role r left join sys_user_role ur on ur.role_id = r.role_id left join sys_user u on u.user_id = ur.user_id left join sys_dept d on u.dept_id = d.dept_id where r.id in ( ? ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'r.id' in 'where clause' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'r.id' in 'where clause' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy168.getSysRoleByIds(Unknown Source) - at com.ruoyi.system.service.impl.SysRoleServiceImpl.getSysRoleByIds(SysRoleServiceImpl.java:453) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$4129db27.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$2d44a37f.getSysRoleByIds(<generated>) - at com.ruoyi.system.controller.SysRoleController.getSysRoleByIds(SysRoleController.java:319) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$ea19c9e4.getSysRoleByIds(<generated>) - at sun.reflect.GeneratedMethodAccessor301.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'r.id' in 'where clause' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor228.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor291.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor302.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 82 common frames omitted -09:54:32.228 [http-nio-9101-exec-3] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20008} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$158b3685.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$1f876aa3.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -09:55:50.775 [http-nio-9101-exec-10] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20010} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy265.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy263.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy262.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$158b3685.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$1f876aa3.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -10:30:05.896 [http-nio-9101-exec-9] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/addSysUser',发生未知异常. -java.lang.RuntimeException: 手机号已开通账号 - at com.ruoyi.system.controller.SysUserController.addSysUser(SysUserController.java:693) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$e2470c88.addSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -10:30:11.985 [http-nio-9101-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/addSysUser',发生未知异常. -java.lang.RuntimeException: 手机号已开通账号 - at com.ruoyi.system.controller.SysUserController.addSysUser(SysUserController.java:693) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$e2470c88.addSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -10:32:21.167 [http-nio-9101-exec-4] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/addSysUser',发生未知异常. -java.lang.RuntimeException: 手机号已开通账号 - at com.ruoyi.system.controller.SysUserController.addSysUser(SysUserController.java:693) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$e2470c88.addSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -10:36:36.672 [http-nio-9101-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20015} execute error. insert into sys_user_role - ( user_id ) - values ( ? ) -java.sql.SQLException: Field 'role_id' doesn't have a default value - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - at com.sun.proxy.$Proxy160.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy176.insertSysUserRole(Unknown Source) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl.insertSysUserRole(SysUserRoleServiceImpl.java:57) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$FastClassBySpringCGLIB$$abd673dc.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysUserRoleServiceImpl$$EnhancerBySpringCGLIB$$c15aa750.insertSysUserRole(<generated>) - at com.ruoyi.system.controller.SysUserController.updateSysUser(SysUserController.java:380) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$9544a3eb.updateSysUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -11:27:27.879 [http-nio-9101-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/updateUser',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.SysUserMapper.updateById - at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) - at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1688) - at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.updateById(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.updateById(IService.java:239) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ce58051d.updateById(<generated>) - at com.ruoyi.system.controller.SysUserController.updateUser(SysUserController.java:590) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$9544a3eb.updateUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -11:28:06.484 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/updateUser',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.SysUserMapper.updateById - at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) - at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1688) - at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.updateById(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.updateById(IService.java:239) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ce58051d.updateById(<generated>) - at com.ruoyi.system.controller.SysUserController.updateUser(SysUserController.java:590) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$9544a3eb.updateUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -11:28:13.137 [http-nio-9101-exec-6] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/updateUser',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.SysUserMapper.updateById - at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) - at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1688) - at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.updateById(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.updateById(IService.java:239) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ce58051d.updateById(<generated>) - at com.ruoyi.system.controller.SysUserController.updateUser(SysUserController.java:590) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$9544a3eb.updateUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -11:30:11.449 [http-nio-9101-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/updateUser',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.SysUserMapper.updateById - at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) - at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1688) - at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.updateById(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.updateById(IService.java:239) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ce58051d.updateById(<generated>) - at com.ruoyi.system.controller.SysUserController.updateUser(SysUserController.java:590) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$9544a3eb.updateUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -11:34:09.974 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/updateUser',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.SysUserMapper.updateById - at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) - at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1688) - at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:115) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.updateById(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.updateById(IService.java:239) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ce58051d.updateById(<generated>) - at com.ruoyi.system.controller.SysUserController.updateUser(SysUserController.java:590) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$9544a3eb.updateUser(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -11:36:02.422 [http-nio-9101-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/queryUserByUserName',发生未知异常. -org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource -### The error may exist in com/ruoyi/system/mapper/SysUserMapper.java (best guess) -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectList -### The error occurred while executing a query -### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$29b3b472.getOne(<generated>) - at com.ruoyi.system.controller.SysUserController.queryUserByUserName(SysUserController.java:673) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a3aa6d98.queryUserByUserName(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource -### The error may exist in com/ruoyi/system/mapper/SysUserMapper.java (best guess) -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectList -### The error occurred while executing a query -### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 89 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.determinePrimaryDataSource(DynamicRoutingDataSource.java:97) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.getDataSource(DynamicRoutingDataSource.java:126) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.determineDataSource(DynamicRoutingDataSource.java:83) - at com.baomidou.dynamic.datasource.ds.AbstractRoutingDataSource.getConnection(AbstractRoutingDataSource.java:55) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:159) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:117) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:80) - at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80) - at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67) - at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:337) - at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:86) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - ... 96 common frames omitted -11:37:27.140 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/queryUserByUserName',发生未知异常. -org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource -### The error may exist in com/ruoyi/system/mapper/SysUserMapper.java (best guess) -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectList -### The error occurred while executing a query -### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$29b3b472.getOne(<generated>) - at com.ruoyi.system.controller.SysUserController.queryUserByUserName(SysUserController.java:673) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$a3aa6d98.queryUserByUserName(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource -### The error may exist in com/ruoyi/system/mapper/SysUserMapper.java (best guess) -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectList -### The error occurred while executing a query -### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 89 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.determinePrimaryDataSource(DynamicRoutingDataSource.java:97) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.getDataSource(DynamicRoutingDataSource.java:126) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.determineDataSource(DynamicRoutingDataSource.java:83) - at com.baomidou.dynamic.datasource.ds.AbstractRoutingDataSource.getConnection(AbstractRoutingDataSource.java:55) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:159) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:117) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:80) - at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80) - at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67) - at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:337) - at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:86) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - ... 96 common frames omitted -11:41:38.020 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/user/queryUserByUserName',发生未知异常. -org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource -### The error may exist in com/ruoyi/system/mapper/SysUserMapper.java (best guess) -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectList -### The error occurred while executing a query -### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy160.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:173) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy174.selectOne(Unknown Source) - at com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.getOne(ServiceImpl.java:202) - at com.baomidou.mybatisplus.extension.service.IService.getOne(IService.java:320) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$c15e3d05.getOne(<generated>) - at com.ruoyi.system.controller.SysUserController.queryUserByUserName(SysUserController.java:673) - at com.ruoyi.system.controller.SysUserController$$FastClassBySpringCGLIB$$bd6cb4e2.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysUserController$$EnhancerBySpringCGLIB$$4825e78b.queryUserByUserName(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:665) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.apache.ibatis.exceptions.PersistenceException: -### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource -### The error may exist in com/ruoyi/system/mapper/SysUserMapper.java (best guess) -### The error may involve com.ruoyi.system.mapper.SysUserMapper.selectList -### The error occurred while executing a query -### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 89 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.determinePrimaryDataSource(DynamicRoutingDataSource.java:97) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.getDataSource(DynamicRoutingDataSource.java:126) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.determineDataSource(DynamicRoutingDataSource.java:83) - at com.baomidou.dynamic.datasource.ds.AbstractRoutingDataSource.getConnection(AbstractRoutingDataSource.java:55) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:159) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:117) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:80) - at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80) - at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67) - at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:337) - at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:86) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - ... 96 common frames omitted -14:17:33.054 [http-nio-9101-exec-2] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,72] - 请求地址'/sysLoginLog/addLoginLog',不支持'GET'请求 -14:39:46.442 [http-nio-9101-exec-10] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/operlog/list',发生未知异常. -java.lang.NullPointerException: null - at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysOperLogServiceImpl$$EnhancerBySpringCGLIB$$292cd445.page(<generated>) - at com.ruoyi.system.controller.SysOperlogController.list(SysOperlogController.java:58) - at com.ruoyi.system.controller.SysOperlogController$$FastClassBySpringCGLIB$$f0958177.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysOperlogController$$EnhancerBySpringCGLIB$$18769068.list(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:40:10.145 [http-nio-9101-exec-3] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/operlog/list',发生未知异常. -java.lang.NullPointerException: null - at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysOperLogServiceImpl$$EnhancerBySpringCGLIB$$292cd445.page(<generated>) - at com.ruoyi.system.controller.SysOperlogController.list(SysOperlogController.java:58) - at com.ruoyi.system.controller.SysOperlogController$$FastClassBySpringCGLIB$$f0958177.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysOperlogController$$EnhancerBySpringCGLIB$$18769068.list(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -14:42:27.260 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/operlog/list',发生未知异常. -java.lang.NullPointerException: null - at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) - at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) - at com.ruoyi.system.service.impl.SysOperLogServiceImpl$$EnhancerBySpringCGLIB$$292cd445.page(<generated>) - at com.ruoyi.system.controller.SysOperlogController.list(SysOperlogController.java:58) - at com.ruoyi.system.controller.SysOperlogController$$FastClassBySpringCGLIB$$f0958177.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysOperlogController$$EnhancerBySpringCGLIB$$18769068.list(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:13:25.632 [http-nio-9101-exec-8] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/listPage',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' -### The error may exist in com/ruoyi/system/mapper/SysRoleMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT role_id AS roleId,role_name AS roleName,role_key AS roleKey,role_sort AS roleSort,data_scope AS dataScope,menu_check_strictly AS menuCheckStrictly,dept_check_strictly AS deptCheckStrictly,status,del_flag AS delFlag,create_by AS createBy,create_time AS createTime,update_by AS updateBy,update_time AS updateTime,remark FROM sys_role WHERE (status = ? AND del_flag = ?) ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy159.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy167.selectPage(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$adb7b020.page(<generated>) - at com.ruoyi.system.controller.SysRoleController.listPage(SysRoleController.java:111) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$56ebc6e3.listPage(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:14:14.349 [http-nio-9101-exec-7] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/listPage',发生未知异常. -org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' -### The error may exist in com/ruoyi/system/mapper/SysRoleMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT role_id AS roleId,role_name AS roleName,role_key AS roleKey,role_sort AS roleSort,data_scope AS dataScope,menu_check_strictly AS menuCheckStrictly,dept_check_strictly AS deptCheckStrictly,status,del_flag AS delFlag,create_by AS createBy,create_time AS createTime,update_by AS updateBy,update_time AS updateTime,remark FROM sys_role WHERE (status = ? AND del_flag = ?) ORDER BY create_time DESC LIMIT ? -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' -; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy159.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy167.selectPage(Unknown Source) - at com.baomidou.mybatisplus.extension.service.IService.page(IService.java:389) - at com.baomidou.mybatisplus.extension.service.IService$$FastClassBySpringCGLIB$$f8525d18.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$adb7b020.page(<generated>) - at com.ruoyi.system.controller.SysRoleController.listPage(SysRoleController.java:111) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$56ebc6e3.listPage(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'role_sort' in 'field list' - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) - at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy269.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy267.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy266.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 83 common frames omitted -15:18:10.092 [http-nio-9101-exec-1] ERROR c.r.o.a.f.RoleSiteFallbackFactory - [create,25] - 调用失败:[404] during [POST] to [http://ruoyi-other/t-role-site/getSiteIds] [RoleSiteClient#getSiteIds(Long)]: [{"timestamp":"2024-08-17T15:18:10.061+08:00","status":404,"error":"Not Found","path":"/t-role-site/getSiteIds"}] -15:18:10.096 [http-nio-9101-exec-1] ERROR c.r.c.a.f.SiteFallbackFactory - [create,25] - 站点调用失败:Body parameter 0 was null -15:18:10.102 [http-nio-9101-exec-1] ERROR c.r.c.s.h.GlobalExceptionHandler - [handleRuntimeException,94] - 请求地址'/role/listPage',发生未知异常. -java.lang.NullPointerException: null - at com.ruoyi.system.controller.SysRoleController.listPage(SysRoleController.java:115) - at com.ruoyi.system.controller.SysRoleController$$FastClassBySpringCGLIB$$405afcd.invoke(<generated>) - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) - at com.ruoyi.system.controller.SysRoleController$$EnhancerBySpringCGLIB$$57984e70.listPage(<generated>) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -15:19:58.004 [http-nio-9101-exec-2] ERROR c.r.o.a.f.RoleSiteFallbackFactory - [create,25] - 调用失败:[404] during [POST] to [http://ruoyi-other/t-role-site/getSiteIds] [RoleSiteClient#getSiteIds(Long)]: [{"timestamp":"2024-08-17T15:19:57.998+08:00","status":404,"error":"Not Found","path":"/t-role-site/getSiteIds"}] -15:19:58.007 [http-nio-9101-exec-2] ERROR c.r.c.a.f.SiteFallbackFactory - [create,25] - 站点调用失败:Body parameter 0 was null -15:26:50.371 [main] ERROR o.s.b.SpringApplication - [reportFailure,821] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysLoginLogController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysLoginLogServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysUserServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.RoleSiteClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: PathVariable annotation was empty on param 0. - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) - at com.ruoyi.system.RuoYiSystemApplication.main(RuoYiSystemApplication.java:26) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysLoginLogServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysUserServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.RoleSiteClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: PathVariable annotation was empty on param 0. - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysUserServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.RoleSiteClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: PathVariable annotation was empty on param 0. - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 33 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.ruoyi.other.api.feignClient.RoleSiteClient': Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: PathVariable annotation was empty on param 0. - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:555) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:544) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:520) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:673) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:329) - ... 49 common frames omitted -Caused by: java.lang.IllegalStateException: PathVariable annotation was empty on param 0. - at feign.Util.checkState(Util.java:136) - at org.springframework.cloud.openfeign.annotation.PathVariableParameterProcessor.processArgument(PathVariableParameterProcessor.java:52) - at org.springframework.cloud.openfeign.support.SpringMvcContract.processAnnotationsOnParameter(SpringMvcContract.java:280) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:126) - at org.springframework.cloud.openfeign.support.SpringMvcContract.parseAndValidateMetadata(SpringMvcContract.java:193) - at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:65) - at com.alibaba.cloud.sentinel.feign.SentinelContractHolder.parseAndValidateMetadata(SentinelContractHolder.java:49) - at feign.ReflectiveFeign$ParseHandlersByName.apply(ReflectiveFeign.java:151) - at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:49) - at feign.Feign$Builder.target(Feign.java:205) - at org.springframework.cloud.openfeign.DefaultTargeter.target(DefaultTargeter.java:30) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.loadBalance(FeignClientFactoryBean.java:379) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getTarget(FeignClientFactoryBean.java:427) - at org.springframework.cloud.openfeign.FeignClientFactoryBean.getObject(FeignClientFactoryBean.java:402) - at org.springframework.cloud.openfeign.FeignClientsRegistrar.lambda$registerFeignClient$0(FeignClientsRegistrar.java:235) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.obtainFromSupplier(AbstractAutowireCapableBeanFactory.java:1249) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) - ... 62 common frames omitted diff --git a/logs/ruoyi-system/info.2024-08-15.log b/logs/ruoyi-system/info.2024-08-15.log deleted file mode 100644 index ad49738..0000000 --- a/logs/ruoyi-system/info.2024-08-15.log +++ /dev/null @@ -1,198 +0,0 @@ -10:59:29.691 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -10:59:30.730 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0 -10:59:30.822 [main] INFO o.r.Reflections - [scan,232] - Reflections took 63 ms to scan 1 urls, producing 3 keys and 6 values -10:59:30.862 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -10:59:30.876 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -10:59:31.082 [main] INFO o.r.Reflections - [scan,232] - Reflections took 202 ms to scan 285 urls, producing 0 keys and 0 values -10:59:31.092 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -10:59:31.104 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 7 values -10:59:31.121 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values -10:59:31.296 [main] INFO o.r.Reflections - [scan,232] - Reflections took 171 ms to scan 285 urls, producing 0 keys and 0 values -10:59:31.300 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -10:59:31.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/891232836 -10:59:31.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1419166053 -10:59:31.302 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -10:59:31.303 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -10:59:31.317 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:34.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:37.033 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:39.099 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -10:59:39.099 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:59:39.099 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/45320991 -10:59:40.468 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -10:59:43.335 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:43.634 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8080"] -10:59:43.634 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -10:59:43.634 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -10:59:43.828 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -10:59:45.596 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:47.979 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:48.168 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -10:59:50.459 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:51.092 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 60a431d5-b2d9-4713-8cac-9d4e130bfc68 -10:59:51.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] RpcClient init label, labels = {module=naming, source=sdk} -10:59:51.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -10:59:51.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -10:59:51.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -10:59:51.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:53.023 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:53.163 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:55.230 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:55.700 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:57.291 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -10:59:57.291 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Try to reconnect to a new server, server is not appointed, will choose a random server. -10:59:57.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/45320991 -10:59:57.634 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-8080"] -10:59:58.468 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -10:59:58.643 [main] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -10:59:58.643 [main] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4832813d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -10:59:58.643 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@70c3483b[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 6] -10:59:58.649 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0ea4a202-11fc-439e-8f4f-dda19d7e94cf -10:59:58.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] RpcClient init label, labels = {module=naming, source=sdk} -10:59:58.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -10:59:58.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -10:59:58.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -10:59:58.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -10:59:58.764 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [60a431d5-b2d9-4713-8cac-9d4e130bfc68] Client is shutdown, stop reconnect to server -11:00:00.719 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -11:00:01.342 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -11:00:02.762 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -11:00:04.316 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6624ad8d-ef2c-4071-82c7-e4b3bd12c475_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -11:00:04.817 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Try to reconnect to a new server, server is not appointed, will choose a random server. -11:00:04.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:00:04.818 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0ea4a202-11fc-439e-8f4f-dda19d7e94cf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/45320991 -11:00:05.182 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -11:00:05.183 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -11:00:05.420 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Pausing ProtocolHandler ["http-nio-8080"] -11:00:05.420 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -11:00:05.433 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Stopping ProtocolHandler ["http-nio-8080"] -11:00:05.437 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Destroying ProtocolHandler ["http-nio-8080"] -11:02:01.281 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:02:02.479 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 59568960-4ddd-4f18-a1ae-6331030a25d2_config-0 -11:02:02.544 [main] INFO o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 1 urls, producing 3 keys and 6 values -11:02:02.586 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 4 keys and 9 values -11:02:02.599 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -11:02:02.808 [main] INFO o.r.Reflections - [scan,232] - Reflections took 205 ms to scan 285 urls, producing 0 keys and 0 values -11:02:02.819 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -11:02:02.836 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -11:02:02.850 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -11:02:03.033 [main] INFO o.r.Reflections - [scan,232] - Reflections took 179 ms to scan 285 urls, producing 0 keys and 0 values -11:02:03.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:02:03.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/779051277 -11:02:03.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/512140711 -11:02:03.036 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:02:03.037 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:02:03.049 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:02:04.822 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723690924829_192.168.110.80_53887 -11:02:04.823 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Notify connected event to listeners. -11:02:04.823 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:02:04.823 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [59568960-4ddd-4f18-a1ae-6331030a25d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1435191618 -11:02:04.909 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:02:07.892 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -11:02:07.893 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:02:07.893 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:02:08.086 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:02:08.780 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -11:02:08.782 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -11:02:08.782 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -11:02:09.917 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -11:02:09.919 [main] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ... -11:02:09.924 [main] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed -11:02:09.925 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -11:02:09.927 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -11:08:49.317 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -11:08:50.514 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d2937ac1-64f6-405c-a05d-a66349259022_config-0 -11:08:50.572 [main] INFO o.r.Reflections - [scan,232] - Reflections took 33 ms to scan 1 urls, producing 3 keys and 6 values -11:08:50.613 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -11:08:50.627 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -11:08:50.829 [main] INFO o.r.Reflections - [scan,232] - Reflections took 198 ms to scan 285 urls, producing 0 keys and 0 values -11:08:50.839 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -11:08:50.860 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -11:08:50.872 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -11:08:51.054 [main] INFO o.r.Reflections - [scan,232] - Reflections took 177 ms to scan 285 urls, producing 0 keys and 0 values -11:08:51.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -11:08:51.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1037572328 -11:08:51.057 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1286868539 -11:08:51.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -11:08:51.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -11:08:51.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:08:52.856 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691332855_192.168.110.80_54044 -11:08:52.857 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Notify connected event to listeners. -11:08:52.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:08:52.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2937ac1-64f6-405c-a05d-a66349259022_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1447521302 -11:08:52.940 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -11:08:55.922 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -11:08:55.922 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -11:08:55.923 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -11:08:56.102 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -11:08:56.733 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -11:08:56.735 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -11:08:56.735 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -11:09:00.876 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -11:09:03.916 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 747a3a6d-0cb0-4ade-b49a-c2cc008f50b8 -11:09:03.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] RpcClient init label, labels = {module=naming, source=sdk} -11:09:03.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -11:09:03.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -11:09:03.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -11:09:03.920 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -11:09:04.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723691344123_192.168.110.80_54053 -11:09:04.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -11:09:04.028 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Notify connected event to listeners. -11:09:04.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1447521302 -11:09:04.061 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -11:09:04.084 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -11:09:04.553 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Receive server push request, request = NotifySubscriberRequest, requestId = 6 -11:09:04.558 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [747a3a6d-0cb0-4ade-b49a-c2cc008f50b8] Ack server push request, request = NotifySubscriberRequest, requestId = 6 -11:09:04.942 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 16.71 seconds (JVM running for 18.141) -11:09:04.954 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -11:09:04.955 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -11:09:04.955 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -11:13:17.965 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:58:55.190 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -14:58:56.387 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3238483d-d27c-4574-b472-988a70db6780_config-0 -14:58:56.456 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -14:58:56.495 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 4 keys and 9 values -14:58:56.509 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -14:58:56.716 [main] INFO o.r.Reflections - [scan,232] - Reflections took 202 ms to scan 285 urls, producing 0 keys and 0 values -14:58:56.726 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -14:58:56.743 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -14:58:56.756 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -14:58:56.935 [main] INFO o.r.Reflections - [scan,232] - Reflections took 176 ms to scan 285 urls, producing 0 keys and 0 values -14:58:56.936 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -14:58:56.937 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1286868539 -14:58:56.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1102181662 -14:58:56.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:58:56.941 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:58:56.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:58:58.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723705138761_192.168.110.80_57837 -14:58:58.742 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Notify connected event to listeners. -14:58:58.742 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:58:58.743 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3238483d-d27c-4574-b472-988a70db6780_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1000556746 -14:58:58.826 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -14:59:02.265 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -14:59:02.265 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:59:02.265 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -14:59:02.438 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:59:03.091 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -14:59:03.092 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -14:59:03.092 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -14:59:07.289 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:59:10.337 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4453efcc-ba30-4218-8ce3-ed3fb98c6310 -14:59:10.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] RpcClient init label, labels = {module=naming, source=sdk} -14:59:10.339 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:59:10.339 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:59:10.340 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:59:10.340 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -14:59:10.450 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723705150569_192.168.110.80_57847 -14:59:10.450 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:59:10.450 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Notify connected event to listeners. -14:59:10.450 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1000556746 -14:59:10.481 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -14:59:10.505 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -14:59:11.033 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Receive server push request, request = NotifySubscriberRequest, requestId = 89 -14:59:11.039 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4453efcc-ba30-4218-8ce3-ed3fb98c6310] Ack server push request, request = NotifySubscriberRequest, requestId = 89 -14:59:11.382 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 17.322 seconds (JVM running for 18.735) -14:59:11.391 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -14:59:11.392 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -14:59:11.393 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -14:59:46.609 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' diff --git a/logs/ruoyi-system/info.2024-08-16.log b/logs/ruoyi-system/info.2024-08-16.log deleted file mode 100644 index 1c6135d..0000000 --- a/logs/ruoyi-system/info.2024-08-16.log +++ /dev/null @@ -1,288 +0,0 @@ -15:01:20.314 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:01:21.645 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0 -15:01:21.718 [main] INFO o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 3 keys and 6 values -15:01:21.762 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -15:01:21.776 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:01:21.992 [main] INFO o.r.Reflections - [scan,232] - Reflections took 212 ms to scan 285 urls, producing 0 keys and 0 values -15:01:22.003 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -15:01:22.023 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 7 values -15:01:22.035 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -15:01:22.214 [main] INFO o.r.Reflections - [scan,232] - Reflections took 176 ms to scan 285 urls, producing 0 keys and 0 values -15:01:22.216 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:01:22.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2082807696 -15:01:22.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1367612102 -15:01:22.219 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:01:22.221 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:01:22.234 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:01:24.097 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723791684287_192.168.110.80_59984 -15:01:24.098 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Notify connected event to listeners. -15:01:24.099 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:01:24.099 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [83d1006a-b81d-48d7-99cd-ef6bc721254f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1088327571 -15:01:24.193 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:01:27.973 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:01:27.973 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:01:27.973 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:01:28.203 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:01:29.804 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:01:29.805 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:01:29.805 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:01:34.432 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:01:37.969 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bafb7d38-096e-47de-b346-7c8afe29fa3b -15:01:37.969 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] RpcClient init label, labels = {module=naming, source=sdk} -15:01:37.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:01:37.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:01:37.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:01:37.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:01:38.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723791698367_192.168.110.80_60004 -15:01:38.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:01:38.089 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Notify connected event to listeners. -15:01:38.089 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/1088327571 -15:01:38.118 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:01:38.144 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -15:01:38.699 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Receive server push request, request = NotifySubscriberRequest, requestId = 128 -15:01:38.705 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bafb7d38-096e-47de-b346-7c8afe29fa3b] Ack server push request, request = NotifySubscriberRequest, requestId = 128 -15:01:39.081 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 20.008 seconds (JVM running for 22.284) -15:01:39.094 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:01:39.095 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:01:39.095 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:01:47.978 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:03:44.999 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:03:46.209 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8782984a-9499-4e09-8c25-448515b1acfb_config-0 -15:03:46.273 [main] INFO o.r.Reflections - [scan,232] - Reflections took 35 ms to scan 1 urls, producing 3 keys and 6 values -15:03:46.315 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 4 keys and 9 values -15:03:46.330 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values -15:03:46.535 [main] INFO o.r.Reflections - [scan,232] - Reflections took 201 ms to scan 285 urls, producing 0 keys and 0 values -15:03:46.545 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -15:03:46.560 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -15:03:46.573 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -15:03:46.765 [main] INFO o.r.Reflections - [scan,232] - Reflections took 190 ms to scan 285 urls, producing 0 keys and 0 values -15:03:46.768 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:03:46.769 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2097435292 -15:03:46.770 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/351965871 -15:03:46.770 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:03:46.771 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:03:46.781 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:03:48.601 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723791828780_192.168.110.80_60090 -15:03:48.603 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Notify connected event to listeners. -15:03:48.603 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:03:48.604 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8782984a-9499-4e09-8c25-448515b1acfb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/2057227460 -15:03:48.699 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:03:51.801 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:03:51.802 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:03:51.802 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:03:51.982 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:03:52.622 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:03:52.624 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:03:52.624 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:03:56.817 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:03:59.926 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 9148e3cd-fbf7-4c3f-a642-50c6363ef9fb -15:03:59.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] RpcClient init label, labels = {module=naming, source=sdk} -15:03:59.929 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:03:59.929 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:03:59.929 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:03:59.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:04:00.054 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723791840325_192.168.110.80_60099 -15:04:00.055 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Notify connected event to listeners. -15:04:00.055 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:04:00.057 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/2057227460 -15:04:00.105 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:04:00.127 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -15:04:00.672 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Receive server push request, request = NotifySubscriberRequest, requestId = 134 -15:04:00.678 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [9148e3cd-fbf7-4c3f-a642-50c6363ef9fb] Ack server push request, request = NotifySubscriberRequest, requestId = 134 -15:04:01.010 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 17.13 seconds (JVM running for 18.722) -15:04:01.018 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:04:01.019 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:04:01.020 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:09:16.796 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:12:29.628 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:12:30.851 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 880ce4bf-f147-4495-aedb-564f4500c2c8_config-0 -15:12:30.914 [main] INFO o.r.Reflections - [scan,232] - Reflections took 35 ms to scan 1 urls, producing 3 keys and 6 values -15:12:30.956 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -15:12:30.969 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:12:31.172 [main] INFO o.r.Reflections - [scan,232] - Reflections took 199 ms to scan 285 urls, producing 0 keys and 0 values -15:12:31.183 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 1 keys and 5 values -15:12:31.203 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -15:12:31.215 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -15:12:31.396 [main] INFO o.r.Reflections - [scan,232] - Reflections took 178 ms to scan 285 urls, producing 0 keys and 0 values -15:12:31.400 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:12:31.400 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1565647145 -15:12:31.402 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1891974590 -15:12:31.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:12:31.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:12:31.423 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:12:33.255 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723792353447_192.168.110.80_60294 -15:12:33.256 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Notify connected event to listeners. -15:12:33.256 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:12:33.257 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [880ce4bf-f147-4495-aedb-564f4500c2c8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/879924346 -15:12:33.345 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:12:36.410 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:12:36.410 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:12:36.411 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:12:36.607 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:12:37.238 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:12:37.239 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:12:37.240 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:12:41.478 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:12:44.578 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d2dc6713-b703-48d6-ab07-2445fb56e378 -15:12:44.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] RpcClient init label, labels = {module=naming, source=sdk} -15:12:44.580 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:12:44.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:12:44.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:12:44.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:12:44.702 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723792364977_192.168.110.80_60304 -15:12:44.702 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Notify connected event to listeners. -15:12:44.702 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:12:44.702 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/879924346 -15:12:44.734 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:12:44.759 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -15:12:45.258 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Receive server push request, request = NotifySubscriberRequest, requestId = 144 -15:12:45.263 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d2dc6713-b703-48d6-ab07-2445fb56e378] Ack server push request, request = NotifySubscriberRequest, requestId = 144 -15:12:45.690 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 17.167 seconds (JVM running for 18.622) -15:12:45.702 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:12:45.702 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:12:45.703 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:13:22.802 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:14:01.692 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:14:03.067 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0 -15:14:03.130 [main] INFO o.r.Reflections - [scan,232] - Reflections took 34 ms to scan 1 urls, producing 3 keys and 6 values -15:14:03.171 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -15:14:03.185 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values -15:14:03.391 [main] INFO o.r.Reflections - [scan,232] - Reflections took 201 ms to scan 285 urls, producing 0 keys and 0 values -15:14:03.402 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 1 keys and 5 values -15:14:03.417 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 7 values -15:14:03.433 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 2 keys and 8 values -15:14:03.647 [main] INFO o.r.Reflections - [scan,232] - Reflections took 209 ms to scan 285 urls, producing 0 keys and 0 values -15:14:03.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:14:03.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1565647145 -15:14:03.651 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1891974590 -15:14:03.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:14:03.653 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:14:03.665 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:14:05.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723792445668_192.168.110.80_60384 -15:14:05.481 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Notify connected event to listeners. -15:14:05.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:14:05.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3ead519-2ddd-44bc-838e-a71db925d1f3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/812229472 -15:14:05.568 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:14:08.723 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:14:08.723 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:14:08.723 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:14:08.913 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:14:09.576 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:14:09.577 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:14:09.578 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:14:14.088 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:14:17.241 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d821bf2d-b2dc-4a35-b2a6-e90986493fa6 -15:14:17.241 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] RpcClient init label, labels = {module=naming, source=sdk} -15:14:17.243 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:14:17.243 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:14:17.244 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:14:17.244 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:14:17.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723792457640_192.168.110.80_60395 -15:14:17.364 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:14:17.364 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Notify connected event to listeners. -15:14:17.364 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/812229472 -15:14:17.402 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:14:17.429 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -15:14:17.999 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Receive server push request, request = NotifySubscriberRequest, requestId = 148 -15:14:18.005 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d821bf2d-b2dc-4a35-b2a6-e90986493fa6] Ack server push request, request = NotifySubscriberRequest, requestId = 148 -15:14:18.349 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 17.914 seconds (JVM running for 19.446) -15:14:18.360 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:14:18.361 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:14:18.362 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:14:50.482 [http-nio-9101-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:16:07.758 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:16:08.953 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0 -15:16:09.016 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values -15:16:09.059 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values -15:16:09.072 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values -15:16:09.272 [main] INFO o.r.Reflections - [scan,232] - Reflections took 196 ms to scan 285 urls, producing 0 keys and 0 values -15:16:09.282 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -15:16:09.300 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -15:16:09.312 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 2 keys and 8 values -15:16:09.494 [main] INFO o.r.Reflections - [scan,232] - Reflections took 179 ms to scan 285 urls, producing 0 keys and 0 values -15:16:09.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:16:09.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/2033282874 -15:16:09.496 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/941453849 -15:16:09.497 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:16:09.498 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:16:09.508 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:16:11.329 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723792571520_192.168.110.80_60469 -15:16:11.334 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Notify connected event to listeners. -15:16:11.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:16:11.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2d174ceb-d92d-422a-a3f2-98f8801f83d2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/2012910465 -15:16:11.427 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:16:14.491 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:16:14.491 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:16:14.492 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:16:14.679 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:16:15.322 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:16:15.323 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:16:15.324 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:16:19.565 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:16:22.662 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4 -15:16:22.662 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] RpcClient init label, labels = {module=naming, source=sdk} -15:16:22.664 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:16:22.664 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:16:22.664 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:16:22.665 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:16:22.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723792583061_192.168.110.80_60486 -15:16:22.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:16:22.782 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Notify connected event to listeners. -15:16:22.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/2012910465 -15:16:22.813 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:16:22.838 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -15:16:23.408 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Receive server push request, request = NotifySubscriberRequest, requestId = 156 -15:16:23.413 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c3250a1e-bf60-4cd6-bf8e-b98cd8311dc4] Ack server push request, request = NotifySubscriberRequest, requestId = 156 -15:16:23.729 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 17.102 seconds (JVM running for 18.562) -15:16:23.738 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:16:23.739 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:16:23.739 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:16:28.819 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:38:32.236 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:38:33.473 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0 -15:38:33.538 [main] INFO o.r.Reflections - [scan,232] - Reflections took 37 ms to scan 1 urls, producing 3 keys and 6 values -15:38:33.578 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 4 keys and 9 values -15:38:33.594 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values -15:38:33.798 [main] INFO o.r.Reflections - [scan,232] - Reflections took 201 ms to scan 285 urls, producing 0 keys and 0 values -15:38:33.808 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values -15:38:33.828 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -15:38:33.840 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 2 keys and 8 values -15:38:34.021 [main] INFO o.r.Reflections - [scan,232] - Reflections took 178 ms to scan 285 urls, producing 0 keys and 0 values -15:38:34.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:38:34.024 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$342/1818453711 -15:38:34.024 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$343/1437107223 -15:38:34.026 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:38:34.027 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:38:34.038 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:38:35.872 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793916070_192.168.110.80_61109 -15:38:35.873 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Notify connected event to listeners. -15:38:35.873 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:38:35.874 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ba5e55bc-f9c5-499e-bc39-c0094ed9e277_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/154795841 -15:38:35.961 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:38:39.058 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:38:39.058 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:38:39.058 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:38:39.291 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:38:39.936 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:38:39.938 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:38:39.938 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:38:44.184 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:38:47.334 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e8813d6b-affd-4ff2-86bf-bb269863bf9d -15:38:47.334 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] RpcClient init label, labels = {module=naming, source=sdk} -15:38:47.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:38:47.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:38:47.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:38:47.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:38:47.457 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723793927736_192.168.110.80_61119 -15:38:47.457 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:38:47.457 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Notify connected event to listeners. -15:38:47.457 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$352/154795841 -15:38:47.491 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:38:47.517 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.110.80:9101 register finished -15:38:48.016 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Receive server push request, request = NotifySubscriberRequest, requestId = 175 -15:38:48.020 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e8813d6b-affd-4ff2-86bf-bb269863bf9d] Ack server push request, request = NotifySubscriberRequest, requestId = 175 -15:38:48.389 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 17.282 seconds (JVM running for 18.762) -15:38:48.401 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:38:48.401 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:38:48.402 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:43:56.341 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' diff --git a/logs/ruoyi-system/info.log b/logs/ruoyi-system/info.log deleted file mode 100644 index 2dd4548..0000000 --- a/logs/ruoyi-system/info.log +++ /dev/null @@ -1,288 +0,0 @@ -15:02:32.234 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:02:40.797 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0 -15:02:40.993 [main] INFO o.r.Reflections - [scan,232] - Reflections took 115 ms to scan 1 urls, producing 3 keys and 6 values -15:02:41.167 [main] INFO o.r.Reflections - [scan,232] - Reflections took 87 ms to scan 1 urls, producing 4 keys and 9 values -15:02:41.189 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values -15:02:41.557 [main] INFO o.r.Reflections - [scan,232] - Reflections took 361 ms to scan 285 urls, producing 0 keys and 0 values -15:02:41.612 [main] INFO o.r.Reflections - [scan,232] - Reflections took 38 ms to scan 1 urls, producing 1 keys and 5 values -15:02:41.631 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 1 keys and 7 values -15:02:41.654 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -15:02:41.947 [main] INFO o.r.Reflections - [scan,232] - Reflections took 287 ms to scan 285 urls, producing 0 keys and 0 values -15:02:42.004 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:02:42.005 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$338/1980560788 -15:02:42.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$339/178342381 -15:02:42.007 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:02:42.008 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:02:42.027 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -15:02:49.269 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -15:02:51.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -15:02:54.030 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:02:54.031 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/48390515 -15:02:54.033 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -15:02:55.620 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:02:59.302 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:02.004 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:05.630 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:09.352 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:13.607 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:16.705 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:20.135 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:24.692 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:28.666 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:33.246 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:36.282 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-8080"] -15:03:36.284 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:03:36.284 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:03:37.229 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:03:37.483 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:49.314 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:03:53.917 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:00.376 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:05.100 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:09.882 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:15.183 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:21.631 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:26.968 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:32.896 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:38.339 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:38.796 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:04:44.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:48.810 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:51.721 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e84bc291-939b-4b82-bbfd-850953064d72 -15:04:51.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] RpcClient init label, labels = {module=naming, source=sdk} -15:04:51.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:04:51.726 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:04:51.727 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:04:51.728 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -15:04:53.697 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:54.112 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -15:04:56.880 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Try to connect to server on start up, server: {serverIp = '127.0.0.1', server main port = 8848} -15:04:58.521 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2a895dd1-c8b0-47f3-b530-b229edd1cc25_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '127.0.0.1', server main port = 8848}, error = unknown -15:04:59.317 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:04:59.317 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Try to reconnect to a new server, server is not appointed, will choose a random server. -15:04:59.317 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$348/48390515 -15:05:01.786 [main] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:05:01.786 [main] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@280d20fb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:05:01.786 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e84bc291-939b-4b82-bbfd-850953064d72] Client is shutdown, stop reconnect to server -15:05:01.788 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@20c7a91d[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 8] -15:05:01.922 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -15:05:01.923 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -15:05:54.006 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:05:56.232 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0 -15:05:56.337 [main] INFO o.r.Reflections - [scan,232] - Reflections took 58 ms to scan 1 urls, producing 3 keys and 6 values -15:05:56.411 [main] INFO o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 4 keys and 9 values -15:05:56.438 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 3 keys and 10 values -15:05:56.789 [main] INFO o.r.Reflections - [scan,232] - Reflections took 344 ms to scan 285 urls, producing 0 keys and 0 values -15:05:56.804 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -15:05:56.826 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 1 keys and 7 values -15:05:56.847 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -15:05:57.101 [main] INFO o.r.Reflections - [scan,232] - Reflections took 249 ms to scan 285 urls, producing 0 keys and 0 values -15:05:57.105 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:05:57.106 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/337813415 -15:05:57.107 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/716206126 -15:05:57.108 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:05:57.109 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:05:57.126 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:06:00.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723619160080_192.168.110.85_57470 -15:06:00.318 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Notify connected event to listeners. -15:06:00.322 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:06:00.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6dbca91c-0f33-40a8-a3f3-504fe174c25f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1637411253 -15:06:00.595 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:06:06.172 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:06:06.173 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:06:06.173 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:06:06.456 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:06:07.671 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:06:07.735 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:06:07.809 [Druid-ConnectionPool-Create-280362829] INFO c.a.d.p.DruidAbstractDataSource - [setFailContinuous,1877] - {dataSource-1} failContinuous is true -15:11:21.555 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:11:23.457 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0 -15:11:23.552 [main] INFO o.r.Reflections - [scan,232] - Reflections took 52 ms to scan 1 urls, producing 3 keys and 6 values -15:11:23.617 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 4 keys and 9 values -15:11:23.639 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values -15:11:23.941 [main] INFO o.r.Reflections - [scan,232] - Reflections took 297 ms to scan 285 urls, producing 0 keys and 0 values -15:11:23.956 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -15:11:23.982 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 1 keys and 7 values -15:11:24.004 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 2 keys and 8 values -15:11:24.277 [main] INFO o.r.Reflections - [scan,232] - Reflections took 269 ms to scan 285 urls, producing 0 keys and 0 values -15:11:24.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:11:24.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1019157412 -15:11:24.284 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1097380 -15:11:24.286 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:11:24.288 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:11:24.304 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:11:27.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723619487234_192.168.110.85_57594 -15:11:27.291 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Notify connected event to listeners. -15:11:27.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:11:27.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [8d59f5b3-9086-4a8c-b05a-3052aa80939f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1013364696 -15:11:27.573 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:11:32.361 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:11:32.362 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:11:32.362 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:11:32.675 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:11:33.759 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:11:33.761 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:11:33.761 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:11:35.653 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -15:11:35.682 [main] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ... -15:11:35.691 [main] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed -15:11:35.692 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -15:11:35.694 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:30:01.192 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:30:04.496 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a92922c1-408b-44a5-a33e-d641f615e23d_config-0 -15:30:04.651 [main] INFO o.r.Reflections - [scan,232] - Reflections took 97 ms to scan 1 urls, producing 3 keys and 6 values -15:30:04.768 [main] INFO o.r.Reflections - [scan,232] - Reflections took 44 ms to scan 1 urls, producing 4 keys and 9 values -15:30:04.792 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values -15:30:05.559 [main] INFO o.r.Reflections - [scan,232] - Reflections took 760 ms to scan 285 urls, producing 0 keys and 0 values -15:30:05.641 [main] INFO o.r.Reflections - [scan,232] - Reflections took 80 ms to scan 1 urls, producing 1 keys and 5 values -15:30:05.666 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 1 keys and 7 values -15:30:05.688 [main] INFO o.r.Reflections - [scan,232] - Reflections took 15 ms to scan 1 urls, producing 2 keys and 8 values -15:30:05.989 [main] INFO o.r.Reflections - [scan,232] - Reflections took 297 ms to scan 285 urls, producing 0 keys and 0 values -15:30:05.993 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:30:05.995 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1338065644 -15:30:05.995 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/884111637 -15:30:05.997 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:30:05.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:30:06.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:30:10.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723620610432_192.168.110.85_57821 -15:30:10.565 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Notify connected event to listeners. -15:30:10.570 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:30:10.571 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a92922c1-408b-44a5-a33e-d641f615e23d_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1386429503 -15:30:11.481 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:30:18.948 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:30:18.948 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:30:18.949 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:30:19.419 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:30:23.373 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:30:23.374 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:30:23.375 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:30:28.058 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -15:30:28.063 [main] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ... -15:30:28.072 [main] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed -15:30:28.073 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -15:30:28.075 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:33:47.758 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:33:49.693 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0 -15:33:49.785 [main] INFO o.r.Reflections - [scan,232] - Reflections took 51 ms to scan 1 urls, producing 3 keys and 6 values -15:33:49.858 [main] INFO o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 4 keys and 9 values -15:33:49.878 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -15:33:50.202 [main] INFO o.r.Reflections - [scan,232] - Reflections took 318 ms to scan 285 urls, producing 0 keys and 0 values -15:33:50.218 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values -15:33:50.238 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 7 values -15:33:50.256 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 2 keys and 8 values -15:33:50.535 [main] INFO o.r.Reflections - [scan,232] - Reflections took 275 ms to scan 285 urls, producing 0 keys and 0 values -15:33:50.539 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:33:50.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/1338065644 -15:33:50.541 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/884111637 -15:33:50.543 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:33:50.545 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:33:50.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:33:53.477 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723620833446_192.168.110.85_57893 -15:33:53.479 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Notify connected event to listeners. -15:33:53.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:33:53.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6e14d22e-62f0-4276-b1d8-c07b79dc5c51_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1386429503 -15:33:53.613 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:33:58.398 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:33:58.399 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:33:58.399 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:33:58.692 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:33:59.634 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:33:59.636 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:33:59.636 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:34:01.610 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -15:34:01.615 [main] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ... -15:34:01.626 [main] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed -15:34:01.626 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -15:34:01.628 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:37:55.696 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:37:58.217 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0 -15:37:58.455 [main] INFO o.r.Reflections - [scan,232] - Reflections took 100 ms to scan 1 urls, producing 3 keys and 6 values -15:37:58.558 [main] INFO o.r.Reflections - [scan,232] - Reflections took 39 ms to scan 1 urls, producing 4 keys and 9 values -15:37:58.585 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values -15:37:59.296 [main] INFO o.r.Reflections - [scan,232] - Reflections took 700 ms to scan 285 urls, producing 0 keys and 0 values -15:37:59.314 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 1 keys and 5 values -15:37:59.527 [main] INFO o.r.Reflections - [scan,232] - Reflections took 196 ms to scan 1 urls, producing 1 keys and 7 values -15:37:59.549 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -15:38:00.129 [main] INFO o.r.Reflections - [scan,232] - Reflections took 575 ms to scan 285 urls, producing 0 keys and 0 values -15:38:00.134 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:38:00.135 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/208437930 -15:38:00.136 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/773300030 -15:38:00.138 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:38:00.139 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:38:00.158 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:38:03.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723621083370_192.168.110.85_57978 -15:38:03.442 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Notify connected event to listeners. -15:38:03.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:38:03.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [879d6cd3-7862-400a-b6fa-59958aaa7f42_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/1142931081 -15:38:03.584 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:38:08.668 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:38:08.668 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:38:08.668 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:38:08.959 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:38:09.931 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:38:09.933 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:38:09.934 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:38:12.137 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -15:38:12.142 [main] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ... -15:38:12.151 [main] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed -15:38:12.152 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -15:38:12.154 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:39:05.792 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final -15:39:07.702 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0 -15:39:07.802 [main] INFO o.r.Reflections - [scan,232] - Reflections took 55 ms to scan 1 urls, producing 3 keys and 6 values -15:39:07.868 [main] INFO o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 4 keys and 9 values -15:39:07.889 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values -15:39:08.187 [main] INFO o.r.Reflections - [scan,232] - Reflections took 293 ms to scan 285 urls, producing 0 keys and 0 values -15:39:08.201 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values -15:39:08.225 [main] INFO o.r.Reflections - [scan,232] - Reflections took 20 ms to scan 1 urls, producing 1 keys and 7 values -15:39:08.247 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 2 keys and 8 values -15:39:08.498 [main] INFO o.r.Reflections - [scan,232] - Reflections took 246 ms to scan 285 urls, producing 0 keys and 0 values -15:39:08.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} -15:39:08.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$340/943219925 -15:39:08.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$341/1037572328 -15:39:08.507 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:39:08.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:39:08.524 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:11.413 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723621151388_192.168.110.85_58023 -15:39:11.415 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Notify connected event to listeners. -15:39:11.418 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:11.418 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [22560dd3-9016-4663-9a72-cf1e8db3cb73_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/878511419 -15:39:11.550 [main] INFO c.r.s.RuoYiSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev" -15:39:16.185 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:39:16.185 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:39:16.185 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.70] -15:39:16.481 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:39:17.433 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited -15:39:17.435 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success -15:39:17.435 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:39:24.220 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:39:29.172 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ae639bb4-a2a3-43f8-bb13-97b09aaf5529 -15:39:29.172 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] RpcClient init label, labels = {module=naming, source=sdk} -15:39:29.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:39:29.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:39:29.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:39:29.178 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Try to connect to server on start up, server: {serverIp = '192.168.110.169', server main port = 8848} -15:39:29.297 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Success to connect to server [192.168.110.169:8848] on start up, connectionId = 1723621169392_192.168.110.85_58036 -15:39:29.298 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Notify connected event to listeners. -15:39:29.298 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:39:29.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$350/878511419 -15:39:29.388 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:39:29.525 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.204.1:9101 register finished -15:39:29.943 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Receive server push request, request = NotifySubscriberRequest, requestId = 1 -15:39:29.950 [nacos-grpc-client-executor-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ae639bb4-a2a3-43f8-bb13-97b09aaf5529] Ack server push request, request = NotifySubscriberRequest, requestId = 1 -15:39:31.024 [main] INFO c.r.s.RuoYiSystemApplication - [logStarted,61] - Started RuoYiSystemApplication in 27.046 seconds (JVM running for 29.013) -15:39:31.039 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system, group=DEFAULT_GROUP -15:39:31.040 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP -15:39:31.041 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=ruoyi-system-dev.yml, group=DEFAULT_GROUP -15:39:32.519 [RMI TCP Connection(3)-192.168.110.85] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:42:09.509 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now... -15:42:09.518 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished. -15:42:09.858 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown -15:42:09.858 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@463d0121[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:42:09.858 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1723621169392_192.168.110.85_58036 -15:42:09.861 [nacos-grpc-client-executor-40] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,60] - [1723621169392_192.168.110.85_58036]Ignore complete event,isRunning:false,isAbandon=false -15:42:09.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1d2e0de9[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 41] -15:42:10.059 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing .... -15:42:10.064 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ... -15:42:10.080 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed -15:42:10.080 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye -- Gitblit v1.7.1