健康咨询代码初始化

master
Shi Xu Chao 2023-10-28 14:57:58 +08:00
commit f7b00453a0
35 changed files with 8261 additions and 0 deletions

38
.gitignore vendored 100644
View File

@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

8
.idea/.gitignore vendored 100644
View File

@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.grail</groupId>
<artifactId>grail-patient-information</artifactId>
<version>3.6.3</version>
</parent>
<artifactId>grail-patient-information-common</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-common-core</artifactId>
</dependency>
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-common-redis</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,22 @@
package com.grail.domain.model;
import lombok.Data;
import java.util.List;
/**
* @Author shixuchao
* @Date
* @Description
*/
@Data
public class HealthType {
//健康咨询主键ID
private Integer healthTypeId;
//健康咨询名称
private String healthTypeName;
private List<Information> informationList;
}

View File

@ -0,0 +1,39 @@
package com.grail.domain.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* @Authorshixuchao
* @Date
* @Description
*/
@Data
public class Information {
//资讯详情Id
private Integer informationId;
//资讯标题
private String informationTitle;
//健康发布人
private Integer userId;
//发布时间
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-d HH:mm:ss")
private Date informationTime;
//发布图片
private String informationPicture;
//发布内容
private String informationContent;
//健康咨询类型Id
private String healthTypeId;
}

View File

@ -0,0 +1,15 @@
package com.grail.domain.request;
import lombok.Data;
/**
* @Author
* @Date
* @Description
*/
@Data
public class Vo {
//健康咨询主键ID
private Integer healthTypeId;
}

View File

@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.grail</groupId>
<artifactId>grail-patient-information</artifactId>
<version>3.6.3</version>
</parent>
<artifactId>grail-patient-information-remote</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-patient-information-common</artifactId>
<version>3.6.3</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
package com.grail.information.factory;
import com.grail.common.core.domain.R;
import com.grail.information.remote.RemoteInformationService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
/**
* @Author
* @Date
* @Description
*/
@Component
public class FactoryInformationService implements FallbackFactory<RemoteInformationService> {
private final static Logger log= LoggerFactory.getLogger(FactoryInformationService.class);
@Override
public RemoteInformationService create(Throwable cause) {
return new RemoteInformationService() {
@Override
public R healthTypeList() {
return R.fail("远程健康咨询调用接口错误");
}
};
}
}

View File

@ -0,0 +1,17 @@
package com.grail.information.remote;
import com.grail.common.core.domain.R;
import com.grail.information.factory.FactoryInformationService;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
/**
* @Author
* @Date
* @Description
*/
@FeignClient(value = "grail-Information",fallbackFactory = FactoryInformationService.class)
public interface RemoteInformationService {
@GetMapping("/healthTypeList")
public R healthTypeList();
}

View File

@ -0,0 +1 @@
com.grail.information.factory.FactoryInformationService

View File

@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

View File

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.grail</groupId>
<artifactId>grail-patient-information</artifactId>
<version>3.6.3</version>
</parent>
<artifactId>grail-patient-information-server</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Swagger UI -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.fox.version}</version>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- grail Common DataSource -->
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-common-datasource</artifactId>
</dependency>
<!-- grail Common DataScope -->
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-common-datascope</artifactId>
</dependency>
<!-- grail Common Log -->
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-common-log</artifactId>
</dependency>
<!-- grail Common Swagger -->
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-common-swagger</artifactId>
</dependency>
<!-- 商品服务公共依赖 -->
<dependency>
<groupId>com.grail</groupId>
<artifactId>grail-patient-information-common</artifactId>
<version>3.6.3</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,23 @@
package com.grail.information;
import com.grail.common.security.annotation.EnableCustomConfig;
import com.grail.common.security.annotation.EnableRyFeignClients;
import com.grail.common.swagger.annotation.EnableCustomSwagger2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
/**
* @Author
* @Date
* @Description
*/
@SpringBootApplication
@EnableCustomConfig
@EnableRyFeignClients
@EnableCustomSwagger2
public class InformationApplication {
public static void main(String[] args) {
SpringApplication.run(InformationApplication.class);
}
}

View File

@ -0,0 +1,38 @@
package com.grail.information.controller;
import com.alibaba.fastjson.JSON;
import com.grail.common.core.domain.R;
import com.grail.common.core.domain.Result;
import com.grail.domain.request.Vo;
import com.grail.information.service.HealthTypeService;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
/**
* @Authorshixuchao
* @Date
* @Description controller
*/
@RestController
@RequestMapping("/healthType")
@Log4j2
public class HealthTypeController {
@Autowired
private HealthTypeService healthTypeService;
@Autowired
private HttpServletRequest request;
@GetMapping("/healthTypeList")
private R healthTypeList(){
R result=healthTypeService.healthTypeList();
log.info("功能:将康资讯列表展示 URI:{},方法:{},参数:{}",request.getRequestURI(),
request.getMethod(), JSON.toJSONString(result.getData()));
return result;
}
}

View File

@ -0,0 +1,28 @@
package com.grail.information.controller;
import com.grail.information.service.InformationService;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
/**
* @Author shixuchao
* @Date
* @Description controller
*/
@RestController
@RequestMapping("/information")
@Log4j2
public class InformationController {
@Autowired
private InformationService informationService;
@Autowired
private HttpServletRequest request;
}

View File

@ -0,0 +1,17 @@
package com.grail.information.mapper;
import com.grail.domain.model.HealthType;
import com.grail.domain.request.Vo;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @Author
* @Date
* @Description
*/
@Mapper
public interface HealthTypeMapper {
List<HealthType> healthTypeList();
}

View File

@ -0,0 +1,17 @@
package com.grail.information.mapper;
import com.grail.domain.model.Information;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @Author
* @Date
* @Description
*/
@Mapper
public interface InformationMapper {
List<Information> informationList(@Param("healthTypeId") Integer healthTypeId);
}

View File

@ -0,0 +1,12 @@
package com.grail.information.service;
import com.grail.common.core.domain.R;
/**
* @Author
* @Date
* @Description
*/
public interface HealthTypeService {
R healthTypeList();
}

View File

@ -0,0 +1,9 @@
package com.grail.information.service;
/**
* @Author
* @Date
* @Description
*/
public interface InformationService {
}

View File

@ -0,0 +1,56 @@
package com.grail.information.service.impl;
import com.grail.common.core.domain.R;
import com.grail.common.redis.service.RedisService;
import com.grail.domain.model.HealthType;
import com.grail.domain.model.Information;
import com.grail.information.mapper.HealthTypeMapper;
import com.grail.information.mapper.InformationMapper;
import com.grail.information.service.HealthTypeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @Authorshixuchao
* @Date
* @Description Service
*/
@Service
public class HealthTypeServiceImpl implements HealthTypeService {
@Autowired
private HealthTypeMapper healthTypeMapper;
@Autowired
private InformationMapper informationMapper;
@Autowired
private RedisService redisService;
private static final String HEALTH_TYPE="health_type";
@Override
public R healthTypeList() {
if (redisService.hasKey(HEALTH_TYPE)){
List<HealthType> cacheList = redisService.getCacheList(HEALTH_TYPE);
return R.ok(cacheList);
}
List<HealthType> healthTypeList=healthTypeMapper.healthTypeList();
healthTypeList.forEach(item -> {
List<Information> informationList =informationMapper.informationList(item.getHealthTypeId());
item.setInformationList(informationList);
});
redisService.setCacheList(HEALTH_TYPE,healthTypeList);
return R.ok(healthTypeList);
}
}

View File

@ -0,0 +1,13 @@
package com.grail.information.service.impl;
import com.grail.information.service.InformationService;
import org.springframework.stereotype.Service;
/**
* @Author
* @Date
* @Description
*/
@Service
public class InformationServiceImpl implements InformationService {
}

View File

@ -0,0 +1,2 @@
Spring Boot Version: ${spring-boot.version}
Spring Application Name: ${spring.application.name}

View File

@ -0,0 +1,32 @@
# Tomcat
server:
port: 10008
# Spring
spring:
application:
# 应用名称
name: grail-Information
profiles:
# 环境配置
active: dev
cloud:
nacos:
discovery:
# 服务注册地址
server-addr: 10.100.1.3:8848
config:
# 配置中心地址
server-addr: 10.100.1.3:8848
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
rabbitmq:
host: 182.254.222.21
mybatis:
configuration:
map-underscore-to-camel-case: true

View File

@ -0,0 +1,74 @@
<?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.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n" />
<!-- 控制台输出 -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
</appender>
<!-- 系统日志输出 -->
<appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/info.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>INFO</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/error.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>ERROR</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 系统模块日志级别控制 -->
<logger name="com.bawei" level="info" />
<!-- Spring日志级别控制 -->
<logger name="org.springframework" level="warn" />
<root level="info">
<appender-ref ref="console" />
</root>
<!--系统操作日志-->
<root level="info">
<appender-ref ref="file_info" />
<appender-ref ref="file_error" />
</root>
</configuration>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.grail.information.mapper.HealthTypeMapper">
<select id="healthTypeList" resultType="com.grail.domain.model.HealthType">
select health_type_id,
health_type_name
from t_healthtype
</select>
</mapper>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.grail.information.mapper.InformationMapper">
<select id="informationList" resultType="com.grail.domain.model.Information">
select information_id,
information_title,
user_id,
information_time,
information_modify,
information_date,
information_picture,
information_content,
health_type_id
from t_information where health_type_id=#{healthTypeId}
</select>
</mapper>

View File

@ -0,0 +1,662 @@
23:38:39.641 [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 5 milliseconds, 859600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@123d7057[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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.information.InformationApplication.main(InformationApplication.java:22)
23:38:42.652 [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, 146300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@43acd79e[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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.information.InformationApplication.main(InformationApplication.java:22)
23:38:45.661 [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 6 milliseconds, 39500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5984feef[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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.information.InformationApplication.main(InformationApplication.java:22)
23:38:45.802 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97ea89aa390b68882e9b0c8b6865ce7b, Client-RequestTS=1698248325665, exConfigInfo=true, notify=false, Timestamp=1698248325666}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
23:38:45.912 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97ea89aa390b68882e9b0c8b6865ce7b, Client-RequestTS=1698248325665, exConfigInfo=true, notify=false, Timestamp=1698248325666}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
23:38:46.022 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97ea89aa390b68882e9b0c8b6865ce7b, Client-RequestTS=1698248325665, exConfigInfo=true, notify=false, Timestamp=1698248325666}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
23:38:46.130 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=817c93b8577bf7384dd097d13ef70458, Client-RequestTS=1698248326028, exConfigInfo=true, notify=false, Timestamp=1698248326028}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
23:38:46.240 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=817c93b8577bf7384dd097d13ef70458, Client-RequestTS=1698248326028, exConfigInfo=true, notify=false, Timestamp=1698248326028}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
23:38:46.350 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=817c93b8577bf7384dd097d13ef70458, Client-RequestTS=1698248326028, exConfigInfo=true, notify=false, Timestamp=1698248326028}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
23:38:46.459 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62a8bdb814e5270d5f96af17d3f2414c, Client-RequestTS=1698248326354, exConfigInfo=true, notify=false, Timestamp=1698248326354}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
23:38:46.568 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62a8bdb814e5270d5f96af17d3f2414c, Client-RequestTS=1698248326354, exConfigInfo=true, notify=false, Timestamp=1698248326354}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
23:38:46.678 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62a8bdb814e5270d5f96af17d3f2414c, Client-RequestTS=1698248326354, exConfigInfo=true, notify=false, Timestamp=1698248326354}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
23:38:46.788 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc32588c65c88cb1a0928a1a24f8edfd, Client-RequestTS=1698248326680, exConfigInfo=true, notify=false, Timestamp=1698248326680}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:STARTING
23:38:46.900 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc32588c65c88cb1a0928a1a24f8edfd, Client-RequestTS=1698248326680, exConfigInfo=true, notify=false, Timestamp=1698248326680}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:STARTING
23:38:47.009 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,99] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc32588c65c88cb1a0928a1a24f8edfd, Client-RequestTS=1698248326680, exConfigInfo=true, notify=false, Timestamp=1698248326680}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:STARTING
23:38:48.680 [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, 36000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@577f2d90[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:38:51.808 [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, 642400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15c8f59f[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:38:55.014 [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 1 milliseconds, 429300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e7e172e[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:38:58.335 [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, 767300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@fda3c36[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:39:01.762 [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, 969100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6646cce8[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:39:05.277 [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 11 milliseconds, 613600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@74e660c[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:39:08.889 [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 1 milliseconds, 696900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1bcd13b[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@35ee466f, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@32e652b6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4ba02375}}}}}]]
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)
23:39:10.556 [main] ERROR c.a.d.p.DruidDataSource - [init,905] - init datasource error, url: jdbc:mysql://10.100.1.2:3306/all_healthcare?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.information.InformationApplication.main(InformationApplication.java:22)
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
23:39:10.561 [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.information.InformationApplication.main(InformationApplication.java:22)
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
23:39:10.563 [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
23:39:10.643 [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.information.InformationApplication.main(InformationApplication.java:22)
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

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,205 @@
14:34:26.821 [http-nio-10008-exec-1] ERROR c.g.c.s.h.GlobalExceptionHandler - [handleHttpRequestMethodNotSupported,61] - 请求地址'/healthType/healthTypeList',不支持'POST'请求
14:35:03.563 [http-nio-10008-exec-2] ERROR druid.sql.Statement - [statementLogError,148] - {conn-10005, pstmt-20007} execute error. select information_id,
information_title,
user_id,
information_time,
information_modify,
information_date,
information_picture,
information_content,
health_type_id
from t_information where health_type_id=?
java.sql.SQLSyntaxErrorException: Unknown column 'information_modify' in 'field list'
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446)
at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)
at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444)
at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)
at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444)
at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152)
at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)
at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:132)
at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)
at jdk.proxy2/jdk.proxy2.$Proxy222.query(Unknown Source)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:577)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)
at jdk.proxy2/jdk.proxy2.$Proxy132.selectList(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)
at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)
at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)
at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)
at jdk.proxy2/jdk.proxy2.$Proxy134.informationList(Unknown Source)
at com.grail.information.service.impl.HealthTypeServiceImpl.lambda$healthTypeList$0(HealthTypeServiceImpl.java:46)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at com.grail.information.service.impl.HealthTypeServiceImpl.healthTypeList(HealthTypeServiceImpl.java:45)
at com.grail.information.controller.HealthTypeController.healthTypeList(HealthTypeController.java:32)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:577)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1070)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Thread.java:833)
14:35:03.611 [http-nio-10008-exec-2] ERROR c.g.c.s.h.GlobalExceptionHandler - [handleRuntimeException,105] - 请求地址'/healthType/healthTypeList',发生未知异常.
org.springframework.jdbc.BadSqlGrammarException:
### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'information_modify' in 'field list'
### The error may exist in file [D:\grail\grail-patient-information\grail-patient-information-server\target\classes\mapper\InformationMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select information_id, information_title, user_id, information_time, information_modify, information_date, information_picture, information_content, health_type_id from t_information where health_type_id=?
### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'information_modify' in 'field list'
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'information_modify' in 'field list'
at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)
at jdk.proxy2/jdk.proxy2.$Proxy132.selectList(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)
at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)
at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)
at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)
at jdk.proxy2/jdk.proxy2.$Proxy134.informationList(Unknown Source)
at com.grail.information.service.impl.HealthTypeServiceImpl.lambda$healthTypeList$0(HealthTypeServiceImpl.java:46)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at com.grail.information.service.impl.HealthTypeServiceImpl.healthTypeList(HealthTypeServiceImpl.java:45)
at com.grail.information.controller.HealthTypeController.healthTypeList(HealthTypeController.java:32)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:577)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1070)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'information_modify' in 'field list'
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3446)
at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)
at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444)
at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)
at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3444)
at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:152)
at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)
at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:132)
at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)
at jdk.proxy2/jdk.proxy2.$Proxy222.query(Unknown Source)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:577)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)
... 63 common frames omitted

View File

@ -0,0 +1,32 @@
23:38:33.956 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
23:38:35.762 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 2835171a-14f0-4465-841b-d7f729c8fc60_config-0
23:38:35.828 [main] INFO o.r.Reflections - [scan,232] - Reflections took 29 ms to scan 1 urls, producing 3 keys and 6 values
23:38:35.856 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
23:38:35.866 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 3 keys and 10 values
23:38:35.882 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values
23:38:35.890 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
23:38:35.897 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values
23:38:35.900 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
23:38:35.900 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f64318
23:38:35.900 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64528
23:38:35.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
23:38:35.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
23:38:35.909 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
23:38:39.647 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
23:38:42.654 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
23:38:45.664 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
23:38:45.664 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
23:38:45.664 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010aa3b8
23:38:47.023 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
23:38:49.080 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
23:38:49.080 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
23:38:49.080 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
23:38:49.250 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
23:38:51.810 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_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
23:38:55.015 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_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
23:38:58.336 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_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
23:39:01.763 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_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
23:39:05.278 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_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
23:39:08.890 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [2835171a-14f0-4465-841b-d7f729c8fc60_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
23:39:10.562 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
23:39:10.593 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]

View File

@ -0,0 +1,984 @@
00:12:22.532 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
00:12:24.328 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0
00:12:24.391 [main] INFO o.r.Reflections - [scan,232] - Reflections took 36 ms to scan 1 urls, producing 3 keys and 6 values
00:12:24.418 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 4 keys and 9 values
00:12:24.442 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values
00:12:24.449 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
00:12:24.457 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
00:12:24.465 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
00:12:24.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
00:12:24.468 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63748
00:12:24.468 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63958
00:12:24.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
00:12:24.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
00:12:24.476 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:12:26.292 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250345737_10.100.1.1_63679
00:12:26.292 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Notify connected event to listeners.
00:12:26.292 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:12:26.292 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ebe9888b-3cf6-41ca-8db2-8670aaa0fa1c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d3760
00:12:26.761 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
00:12:28.425 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
00:12:28.426 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:12:28.426 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
00:12:28.563 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:12:29.205 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:12:30.715 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b
00:12:30.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] RpcClient init label, labels = {module=naming, source=sdk}
00:12:30.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:12:30.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:12:30.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:12:30.717 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:12:31.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250350638_10.100.1.1_63681
00:12:31.174 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Notify connected event to listeners.
00:12:31.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:12:31.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [df7ae6b9-e14d-4a2e-b73b-7d2b73fcd66b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d3760
00:12:32.344 [main] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
00:12:32.344 [main] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@33ef393a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:12:32.344 [main] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698250350638_10.100.1.1_63681
00:12:32.347 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@147203c2[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 3]
00:12:32.364 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
00:12:32.364 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
00:12:32.365 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
00:14:24.150 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
00:14:25.951 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0
00:14:25.998 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
00:14:26.021 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
00:14:26.044 [main] INFO o.r.Reflections - [scan,232] - Reflections took 21 ms to scan 1 urls, producing 3 keys and 10 values
00:14:26.053 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 5 values
00:14:26.063 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 1 keys and 7 values
00:14:26.071 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
00:14:26.074 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
00:14:26.074 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63278
00:14:26.075 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63488
00:14:26.075 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
00:14:26.076 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
00:14:26.082 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:14:27.385 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250466879_10.100.1.1_63768
00:14:27.386 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Notify connected event to listeners.
00:14:27.386 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:14:27.386 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [934a13f0-3baa-43d2-82b9-6b5b4a160d59_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d3388
00:14:27.695 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
00:14:29.460 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
00:14:29.460 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:14:29.460 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
00:14:29.597 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:14:30.267 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:14:31.769 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e6a45391-1d09-4f22-aebe-48cd9f22b6e8
00:14:31.770 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] RpcClient init label, labels = {module=naming, source=sdk}
00:14:31.771 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:14:31.771 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:14:31.771 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:14:31.772 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:14:32.211 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250471598_10.100.1.1_63775
00:14:32.211 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Notify connected event to listeners.
00:14:32.211 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:14:32.211 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d3388
00:14:35.033 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
00:14:35.127 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-information 192.168.80.1:10008 register finished
00:14:35.566 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Receive server push request, request = NotifySubscriberRequest, requestId = 1001
00:14:35.570 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e6a45391-1d09-4f22-aebe-48cd9f22b6e8] Ack server push request, request = NotifySubscriberRequest, requestId = 1001
00:14:36.569 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 14.331 seconds (JVM running for 15.358)
00:14:36.580 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-information.yml, group=DEFAULT_GROUP
00:14:36.581 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-information-dev.yml, group=DEFAULT_GROUP
00:14:36.582 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-information, group=DEFAULT_GROUP
00:14:36.642 [RMI TCP Connection(6)-192.168.236.205] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:15:33.554 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
00:15:33.651 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
00:15:33.977 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
00:15:33.977 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@10902982[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:15:33.977 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698250471598_10.100.1.1_63775
00:15:33.980 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1e005df7[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 22]
00:15:34.111 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
00:15:34.111 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
00:15:40.250 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
00:15:42.042 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0
00:15:42.102 [main] INFO o.r.Reflections - [scan,232] - Reflections took 31 ms to scan 1 urls, producing 3 keys and 6 values
00:15:42.129 [main] INFO o.r.Reflections - [scan,232] - Reflections took 12 ms to scan 1 urls, producing 4 keys and 9 values
00:15:42.149 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values
00:15:42.156 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
00:15:42.163 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
00:15:42.170 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
00:15:42.172 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
00:15:42.173 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
00:15:42.173 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
00:15:42.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
00:15:42.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
00:15:42.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:15:43.619 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250543037_10.100.1.1_63837
00:15:43.619 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Notify connected event to listeners.
00:15:43.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:15:43.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e5dc2960-e6ca-4d85-9bd1-07af8d6ceff6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6218
00:15:44.101 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
00:15:45.855 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
00:15:45.855 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:15:45.856 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
00:15:45.987 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:15:46.628 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:15:48.123 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 6ed13239-bb5c-42fe-89f5-299e99a75c3c
00:15:48.124 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] RpcClient init label, labels = {module=naming, source=sdk}
00:15:48.125 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:15:48.125 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:15:48.126 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:15:48.126 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:15:48.503 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250547985_10.100.1.1_63839
00:15:48.504 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Notify connected event to listeners.
00:15:48.504 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:15:48.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6218
00:15:51.282 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
00:15:51.471 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-information 192.168.80.1:10008 register finished
00:15:51.788 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Receive server push request, request = NotifySubscriberRequest, requestId = 1002
00:15:51.791 [nacos-grpc-client-executor-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [6ed13239-bb5c-42fe-89f5-299e99a75c3c] Ack server push request, request = NotifySubscriberRequest, requestId = 1002
00:15:52.892 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 14.438 seconds (JVM running for 15.361)
00:15:52.903 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-information.yml, group=DEFAULT_GROUP
00:15:52.904 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-information-dev.yml, group=DEFAULT_GROUP
00:15:52.904 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-information, group=DEFAULT_GROUP
00:15:53.441 [RMI TCP Connection(4)-192.168.236.205] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:19:35.020 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
00:19:35.089 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
00:19:35.413 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
00:19:35.414 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3dec4f8c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:19:35.414 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698250547985_10.100.1.1_63839
00:19:35.417 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@332f61a8[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 56]
00:19:35.546 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
00:19:35.546 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
00:19:41.797 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
00:19:43.603 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of db027a51-3852-467f-a346-c66925438215_config-0
00:19:43.650 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values
00:19:43.674 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
00:19:43.692 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values
00:19:43.700 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
00:19:43.709 [main] INFO o.r.Reflections - [scan,232] - Reflections took 7 ms to scan 1 urls, producing 1 keys and 7 values
00:19:43.718 [main] INFO o.r.Reflections - [scan,232] - Reflections took 7 ms to scan 1 urls, producing 2 keys and 8 values
00:19:43.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
00:19:43.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f649b8
00:19:43.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64bc8
00:19:43.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
00:19:43.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
00:19:43.728 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:19:45.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250784517_10.100.1.1_63332
00:19:45.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Notify connected event to listeners.
00:19:45.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:19:45.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db027a51-3852-467f-a346-c66925438215_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d4938
00:19:45.590 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
00:19:47.217 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
00:19:47.218 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
00:19:47.218 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
00:19:47.352 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
00:19:52.680 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
00:19:52.682 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
00:19:52.682 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
00:19:53.309 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
00:19:54.807 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of e9443973-90b7-4963-bf99-cc9ab3254b4d
00:19:54.808 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] RpcClient init label, labels = {module=naming, source=sdk}
00:19:54.809 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
00:19:54.809 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
00:19:54.809 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
00:19:54.810 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
00:19:55.091 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698250794638_10.100.1.1_63343
00:19:55.092 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Notify connected event to listeners.
00:19:55.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
00:19:55.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d4938
00:19:57.861 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
00:19:57.956 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
00:19:58.476 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Receive server push request, request = NotifySubscriberRequest, requestId = 1003
00:19:58.479 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [e9443973-90b7-4963-bf99-cc9ab3254b4d] Ack server push request, request = NotifySubscriberRequest, requestId = 1003
00:19:59.378 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 19.37 seconds (JVM running for 20.317)
00:19:59.386 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
00:19:59.388 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
00:19:59.388 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
00:19:59.467 [RMI TCP Connection(4)-192.168.236.205] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
00:25:07.741 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
00:25:07.797 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
00:25:08.133 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
00:25:08.133 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7f0e4ffb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
00:25:08.133 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698250794638_10.100.1.1_63343
00:25:08.133 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4b9ea851[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 78]
00:25:08.277 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
00:25:08.279 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
00:25:08.285 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
00:25:08.285 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
08:31:17.275 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
08:31:19.050 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 4f540d31-8621-48eb-b407-a586a925e3ec_config-0
08:31:19.107 [main] INFO o.r.Reflections - [scan,232] - Reflections took 27 ms to scan 1 urls, producing 3 keys and 6 values
08:31:19.131 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
08:31:19.146 [main] INFO o.r.Reflections - [scan,232] - Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values
08:31:19.157 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 1 keys and 5 values
08:31:19.164 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
08:31:19.171 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
08:31:19.173 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
08:31:19.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f64318
08:31:19.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f64528
08:31:19.174 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
08:31:19.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
08:31:19.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
08:31:20.489 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698280280837_10.100.1.1_63931
08:31:20.489 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Notify connected event to listeners.
08:31:20.490 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:31:20.490 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d4560
08:31:20.703 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
08:31:22.483 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
08:31:22.483 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
08:31:22.483 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
08:31:22.707 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
08:31:25.658 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
08:31:25.659 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
08:31:25.659 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
08:31:26.203 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
08:31:27.720 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 48349bb9-f42e-4305-9876-1d97462b5a44
08:31:27.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] RpcClient init label, labels = {module=naming, source=sdk}
08:31:27.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
08:31:27.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
08:31:27.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
08:31:27.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
08:31:27.965 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698280288351_10.100.1.1_63942
08:31:27.965 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
08:31:27.965 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Notify connected event to listeners.
08:31:27.965 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d4560
08:31:30.668 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
08:31:30.734 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
08:31:31.199 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Receive server push request, request = NotifySubscriberRequest, requestId = 1006
08:31:31.202 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Ack server push request, request = NotifySubscriberRequest, requestId = 1006
08:31:32.142 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 16.653 seconds (JVM running for 17.861)
08:31:32.150 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
08:31:32.151 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
08:31:32.152 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
08:31:32.429 [RMI TCP Connection(3)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:10:49.060 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:833)
09:10:49.193 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:10:49.232 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:10:49.301 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /10.100.1.3:6379
09:10:55.339 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 1 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:10:55.369 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:10:58.571 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 2 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:10:58.586 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:10:59.384 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:11:01.896 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 3 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:01.911 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:11:05.324 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 4 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:05.339 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:11:08.845 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 5 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:08.860 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:11:09.485 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:11:12.461 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 6 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:12.477 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:11:16.184 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 7 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:16.200 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:19.585 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:11:20.011 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 8 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:20.025 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:23.927 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 9 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:23.943 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:27.943 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 10 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:27.959 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:29.685 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:11:32.070 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 11 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:32.084 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:36.285 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 12 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:36.300 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:39.789 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:11:40.603 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 13 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:40.618 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:45.014 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 14 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:45.030 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:49.535 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 15 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:49.550 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:49.895 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:11:54.157 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 16 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:54.172 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:58.880 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 17 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:11:58.896 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:00.098 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:12:03.695 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 18 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:03.728 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:08.611 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 19 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:08.643 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:10.392 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:12:13.631 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 20 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:13.662 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:18.755 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 21 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:18.786 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:20.994 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:12:23.971 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 22 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:24.004 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:29.287 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 23 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:29.318 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:32.092 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:12:34.707 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 24 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:34.738 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:40.233 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 25 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:40.263 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:44.185 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:12:45.843 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 26 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:45.873 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:51.566 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 27 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:51.597 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:57.390 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 28 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:57.421 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:12:58.389 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:13:03.317 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 29 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:03.350 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:09.329 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 30 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:09.361 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:15.455 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 31 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:15.486 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:16.682 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:13:21.664 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 32 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:21.694 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:27.987 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 33 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:28.018 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:34.404 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 34 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:34.436 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:40.915 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 35 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:40.947 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:43.189 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:13:47.525 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 36 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:47.558 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:54.244 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 37 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:13:54.275 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 37 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:01.064 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 38 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:01.095 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 38 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:07.992 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 39 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:08.007 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 39 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:15.015 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 40 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:15.031 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 40 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:22.142 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 41 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:22.157 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 41 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:23.297 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:14:29.356 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 42 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:29.373 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 42 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:36.661 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 43 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:36.677 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 43 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:44.072 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 44 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:44.087 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 44 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:51.592 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 45 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:51.608 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 45 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:59.222 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 46 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:14:59.237 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 46 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:03.393 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:15:06.939 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 47 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:06.953 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 47 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:14.768 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 48 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:14.784 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 48 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:22.679 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 49 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:22.694 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 49 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:30.705 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 50 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:30.720 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 50 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:38.727 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 51 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:38.742 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 51 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:43.493 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:15:46.730 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 52 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:46.761 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 52 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:54.739 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 53 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:15:54.784 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 53 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:02.753 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 54 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:02.801 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 54 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:10.761 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 55 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:10.807 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 55 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:18.777 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 56 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:18.824 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 56 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:23.593 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:16:26.784 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 57 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:26.830 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 57 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:34.803 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 58 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:34.851 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 58 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:42.819 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 59 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:42.882 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 59 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:50.845 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 60 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:50.907 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 60 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:58.850 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 61 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:16:58.913 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 61 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:03.688 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:17:06.865 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 62 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:06.929 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 62 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:14.894 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 63 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:14.955 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 63 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:22.907 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 64 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:22.971 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 64 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:30.925 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 65 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:30.989 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 65 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:38.936 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 66 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:38.999 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 66 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:43.785 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:17:46.944 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 67 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:47.007 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 67 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:54.958 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 68 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:17:55.022 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 68 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:02.977 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 69 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:03.041 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 69 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:10.991 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 70 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:11.055 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 70 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:19.007 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 71 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:19.069 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 71 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:23.896 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:18:27.032 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 72 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:27.096 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 72 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:35.040 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 73 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:35.117 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 73 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:43.055 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 74 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:43.133 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 74 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:51.070 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 75 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:51.149 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 75 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:59.088 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 76 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:18:59.165 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 76 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:03.992 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:19:07.114 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 77 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:07.192 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 77 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:15.131 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 78 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:15.209 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 78 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:23.146 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 79 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:23.224 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 79 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:31.154 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 80 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:31.234 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 80 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:39.180 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 81 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:39.258 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 81 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:44.086 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:19:47.190 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 82 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:47.284 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 82 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:55.209 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 83 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:19:55.302 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 83 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:03.230 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 84 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:03.324 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 84 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:11.254 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 85 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:11.350 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 85 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:19.259 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 86 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:19.367 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 86 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:24.186 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:20:27.275 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 87 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:27.384 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 87 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:35.300 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 88 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:35.411 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 88 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:43.317 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 89 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:43.428 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 89 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:51.339 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 90 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:51.446 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 90 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:59.370 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 91 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:20:59.463 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 91 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:04.292 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:21:07.393 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 92 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:07.486 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 92 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:15.413 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 93 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:15.506 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 93 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:23.427 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 94 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:23.535 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 94 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:31.452 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 95 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:31.561 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 95 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:39.461 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 96 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:39.571 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 96 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:44.391 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:21:47.482 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 97 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:47.591 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 97 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:55.498 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 98 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:21:55.606 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 98 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:03.526 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 99 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:03.636 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 99 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:11.548 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 100 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:11.659 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 100 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:19.554 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 101 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:19.664 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 101 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:24.493 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:22:27.560 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 102 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:27.669 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 102 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:35.580 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 103 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:35.689 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 103 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:43.600 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 104 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:43.709 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 104 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:51.607 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 105 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:51.717 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 105 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:59.631 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 106 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:22:59.738 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 106 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:04.595 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:23:07.648 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 107 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:07.759 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 107 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:15.673 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 108 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:15.783 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 108 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:23.680 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 109 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:23.790 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 109 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:31.689 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 110 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:31.798 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 110 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:39.720 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 111 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:39.814 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 111 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:44.684 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:23:47.741 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 112 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:47.835 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 112 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:55.771 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 113 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:23:55.864 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 113 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:03.802 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 114 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:03.882 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 114 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:11.826 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 115 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:11.890 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 115 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:19.845 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 116 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:19.908 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 116 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:24.795 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:24:27.862 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 117 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:27.926 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 117 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:35.882 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 118 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:35.946 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 118 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:43.899 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 119 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:43.961 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 119 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:51.917 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 120 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:51.979 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 120 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:59.927 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 121 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:24:59.988 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 121 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:04.883 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:25:07.933 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 122 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:07.997 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 122 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:15.937 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 123 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:16.013 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 123 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:23.958 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 124 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:24.036 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 124 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:31.977 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 125 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:32.053 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 125 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:40.002 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 126 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:40.078 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 126 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:44.996 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:25:48.025 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 127 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:48.104 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 127 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:56.033 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 128 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:25:56.111 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 128 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:04.049 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 129 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:04.127 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 129 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:12.077 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 130 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:12.155 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 130 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:20.089 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 131 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:20.166 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 131 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:25.085 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:26:28.115 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 132 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:28.194 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 132 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:36.136 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 133 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:36.214 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 133 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:44.158 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 134 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:44.234 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 134 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:52.181 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 135 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:26:52.244 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 135 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:00.187 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 136 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:00.266 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 136 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:05.183 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:27:08.201 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 137 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:08.279 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 137 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:16.225 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 138 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:16.288 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 138 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:27:21.475 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Success to connect a server [10.100.1.3:8848], connectionId = 1698283641775_10.100.1.1_62592
09:27:21.475 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Abandon prev connection, server is 10.100.1.3:8848, connectionId is 1698280288351_10.100.1.1_63942
09:27:21.475 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698280288351_10.100.1.1_63942
09:27:21.476 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Notify disconnected event to listeners
09:27:21.477 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Notify connected event to listeners.
09:27:21.539 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Success to connect a server [10.100.1.3:8848], connectionId = 1698283641836_10.100.1.1_62593
09:27:21.539 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Abandon prev connection, server is 10.100.1.3:8848, connectionId is 1698280280837_10.100.1.1_63931
09:27:21.539 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698280280837_10.100.1.1_63931
09:27:21.539 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Notify disconnected event to listeners
09:27:21.540 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Notify connected event to listeners.
09:27:22.290 [nacos-grpc-client-executor-629] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Receive server push request, request = NotifySubscriberRequest, requestId = 1016
09:27:22.291 [nacos-grpc-client-executor-629] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Ack server push request, request = NotifySubscriberRequest, requestId = 1016
09:27:45.293 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:27:45.379 [lettuce-nioEventLoop-4-5] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 10.100.1.3/<unresolved>:6379
09:59:39.868 [lettuce-nioEventLoop-4-5] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset
java.net.SocketException: Connection reset
at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:833)
09:59:39.900 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /10.100.1.3:6379
09:59:39.901 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:59:39.901 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Try to reconnect to a new server, server is not appointed, will choose a random server.
09:59:46.032 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 1 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:59:46.034 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:59:49.240 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 2 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:59:49.255 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:59:49.989 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
09:59:52.564 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 3 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:59:52.579 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:59:55.976 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 4 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:59:55.991 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
09:59:59.482 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 5 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
09:59:59.513 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
10:00:00.090 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:00:03.103 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 6 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:03.133 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_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
10:00:06.811 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 7 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:06.843 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:10.183 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:00:10.622 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 8 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:10.669 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:14.531 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 9 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:14.578 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:18.558 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 10 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:18.579 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:20.286 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:00:22.687 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 11 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:22.703 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:26.915 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 12 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:26.931 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:30.388 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:00:31.244 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 13 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:31.258 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:35.665 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 14 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:35.680 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:40.186 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 15 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:40.201 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:40.496 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:00:44.803 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 16 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:44.818 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:49.510 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 17 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:49.525 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:50.697 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:00:54.326 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 18 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:54.341 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 18 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:59.244 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 19 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:00:59.261 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 19 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:00.989 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:01:04.262 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 20 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:04.278 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 20 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:09.378 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 21 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:09.395 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 21 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:11.597 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:01:14.598 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 22 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:14.598 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 22 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:19.911 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 23 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:19.911 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 23 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:22.690 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:01:25.320 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 24 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:25.320 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 24 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:30.836 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 25 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:30.836 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 25 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:34.797 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:01:36.457 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 26 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:36.457 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 26 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:42.171 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 27 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:42.171 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 27 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:47.992 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 28 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:47.993 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 28 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:48.982 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:01:53.909 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 29 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:53.909 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 29 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:59.930 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 30 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:01:59.930 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 30 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:06.048 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 31 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:06.048 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 31 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:07.283 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:02:12.271 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 32 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:12.271 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 32 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:18.583 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 33 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:18.583 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 33 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:25.000 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 34 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:25.000 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 34 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:31.515 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 35 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:31.515 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 35 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:33.690 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:02:38.135 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 36 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:38.135 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 36 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:44.845 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 37 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:44.845 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 37 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:51.659 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 38 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:51.660 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 38 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:58.566 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 39 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:02:58.566 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 39 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:05.584 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 40 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:05.585 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 40 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:12.700 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 41 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:12.701 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 41 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:13.785 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:03:19.906 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 42 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:19.906 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 42 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:27.216 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 43 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:27.216 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 43 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:34.632 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 44 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:34.632 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 44 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:42.149 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 45 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:42.149 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 45 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:49.771 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 46 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:49.771 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 46 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:53.883 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:03:57.483 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 47 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:03:57.484 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 47 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:05.303 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 48 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:05.303 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 48 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:13.227 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 49 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:13.227 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 49 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:21.250 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Fail to connect server, after trying 50 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:21.250 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Fail to connect server, after trying 50 times, last try server is {serverIp = '10.100.1.3', server main port = 8848}, error = unknown
10:04:26.505 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Success to connect a server [10.100.1.3:8848], connectionId = 1698285866748_10.100.1.1_63109
10:04:26.505 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Success to connect a server [10.100.1.3:8848], connectionId = 1698285866747_10.100.1.1_63108
10:04:26.505 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Abandon prev connection, server is 10.100.1.3:8848, connectionId is 1698283641775_10.100.1.1_62592
10:04:26.505 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Abandon prev connection, server is 10.100.1.3:8848, connectionId is 1698283641836_10.100.1.1_62593
10:04:26.505 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698283641775_10.100.1.1_62592
10:04:26.505 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698283641836_10.100.1.1_62593
10:04:26.506 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Notify disconnected event to listeners
10:04:26.506 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Notify disconnected event to listeners
10:04:26.507 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Notify connected event to listeners.
10:04:26.507 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [4f540d31-8621-48eb-b407-a586a925e3ec_config-0] Notify connected event to listeners.
10:04:28.309 [nacos-grpc-client-executor-1070] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Receive server push request, request = NotifySubscriberRequest, requestId = 1033
10:04:28.310 [nacos-grpc-client-executor-1070] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [48349bb9-f42e-4305-9876-1d97462b5a44] Ack server push request, request = NotifySubscriberRequest, requestId = 1033
10:04:33.989 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 10.100.1.3/<unresolved>:6379
10:04:34.072 [lettuce-nioEventLoop-4-7] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 10.100.1.3/<unresolved>:6379
10:20:57.620 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
10:20:57.662 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
10:20:57.983 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
10:20:57.984 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1acbd8e7[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
10:20:57.984 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698285866748_10.100.1.1_63109
10:20:57.984 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@410fc825[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1268]
10:20:58.124 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
10:20:58.131 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
10:20:58.161 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
10:20:58.161 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
10:21:02.936 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
10:21:04.686 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 31483f28-78e9-4b65-abb4-24a322646c2c_config-0
10:21:04.734 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
10:21:04.755 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
10:21:04.774 [main] INFO o.r.Reflections - [scan,232] - Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values
10:21:04.782 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
10:21:04.789 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
10:21:04.797 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
10:21:04.800 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
10:21:04.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
10:21:04.801 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
10:21:04.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
10:21:04.802 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
10:21:04.809 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
10:21:06.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698286866268_10.100.1.1_62880
10:21:06.119 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Notify connected event to listeners.
10:21:06.119 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:21:06.120 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
10:21:06.345 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
10:21:08.068 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
10:21:08.068 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
10:21:08.068 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
10:21:08.207 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
10:21:11.207 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
10:21:11.208 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
10:21:11.208 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
10:21:11.829 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
10:21:13.323 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 52aa73f9-e511-48df-81f5-88970df6ef2f
10:21:13.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] RpcClient init label, labels = {module=naming, source=sdk}
10:21:13.324 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
10:21:13.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
10:21:13.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
10:21:13.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
10:21:13.556 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698286873770_10.100.1.1_62891
10:21:13.556 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
10:21:13.556 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Notify connected event to listeners.
10:21:13.557 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
10:21:16.267 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
10:21:16.329 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
10:21:16.791 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Receive server push request, request = NotifySubscriberRequest, requestId = 1041
10:21:16.794 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [52aa73f9-e511-48df-81f5-88970df6ef2f] Ack server push request, request = NotifySubscriberRequest, requestId = 1041
10:21:17.752 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 16.526 seconds (JVM running for 17.354)
10:21:17.760 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
10:21:17.761 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
10:21:17.762 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
10:21:18.311 [RMI TCP Connection(7)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
10:21:25.813 [http-nio-10008-exec-1] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻"}]
10:31:16.071 [http-nio-10008-exec-5] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[]
10:31:34.359 [http-nio-10008-exec-6] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[]
10:31:41.405 [http-nio-10008-exec-7] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[]
10:32:16.356 [http-nio-10008-exec-8] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻"}]
10:32:37.067 [http-nio-10008-exec-9] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻"}]
10:33:46.342 [http-nio-10008-exec-1] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻"}]
10:35:35.929 [http-nio-10008-exec-4] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻"}]
10:47:45.319 [http-nio-10008-exec-7] INFO c.g.i.c.HealthTypeController - [healthTypeList,35] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:POST,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻"}]
10:52:36.224 [nacos-grpc-client-executor-389] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 1045
10:52:36.226 [nacos-grpc-client-executor-389] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [31483f28-78e9-4b65-abb4-24a322646c2c_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 1045
11:01:43.202 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:01:43.244 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:01:43.581 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:01:43.581 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3cd08005[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:01:43.581 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698286873770_10.100.1.1_62891
11:01:43.588 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7f369d9b[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 492]
11:01:43.743 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:01:43.747 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:01:43.757 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:01:43.757 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
11:01:50.046 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:01:51.777 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of bc08b765-9376-451d-be03-45ebae0134e1_config-0
11:01:51.820 [main] INFO o.r.Reflections - [scan,232] - Reflections took 22 ms to scan 1 urls, producing 3 keys and 6 values
11:01:51.841 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
11:01:51.858 [main] INFO o.r.Reflections - [scan,232] - Reflections took 16 ms to scan 1 urls, producing 3 keys and 10 values
11:01:51.866 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
11:01:51.873 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
11:01:51.881 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
11:01:51.883 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
11:01:51.883 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
11:01:51.883 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
11:01:51.884 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:01:51.884 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:01:51.890 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:01:53.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698289313185_10.100.1.1_62771
11:01:53.085 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Notify connected event to listeners.
11:01:53.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:01:53.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [bc08b765-9376-451d-be03-45ebae0134e1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:01:53.297 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
11:01:54.924 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
11:01:54.924 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:01:54.924 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
11:01:55.053 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:01:58.010 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
11:01:58.011 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
11:01:58.012 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:01:58.588 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:02:00.090 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 7b9ed6d9-232b-49d5-a55a-7c579cf2041c
11:02:00.091 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] RpcClient init label, labels = {module=naming, source=sdk}
11:02:00.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:02:00.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:02:00.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:02:00.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:02:00.325 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698289320469_10.100.1.1_62789
11:02:00.326 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:02:00.326 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Notify connected event to listeners.
11:02:00.326 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
11:02:03.021 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
11:02:03.079 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
11:02:03.539 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Receive server push request, request = NotifySubscriberRequest, requestId = 1046
11:02:03.542 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [7b9ed6d9-232b-49d5-a55a-7c579cf2041c] Ack server push request, request = NotifySubscriberRequest, requestId = 1046
11:02:04.492 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 16.183 seconds (JVM running for 17.03)
11:02:04.501 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
11:02:04.502 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
11:02:04.503 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
11:02:04.866 [RMI TCP Connection(11)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:21:11.573 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:21:11.613 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:21:11.939 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:21:11.939 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3be8d2a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:21:11.939 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698289320469_10.100.1.1_62789
11:21:11.941 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@796cf6d1[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 247]
11:21:12.068 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:21:12.070 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:21:12.074 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:21:12.074 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
11:21:17.910 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
11:21:19.650 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0
11:21:19.695 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values
11:21:19.716 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
11:21:19.732 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 3 keys and 10 values
11:21:19.740 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
11:21:19.747 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
11:21:19.754 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values
11:21:19.757 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_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:19.758 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63748
11:21:19.758 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63958
11:21:19.758 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
11:21:19.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
11:21:19.766 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:21:20.975 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698290481030_10.100.1.1_63142
11:21:20.976 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Notify connected event to listeners.
11:21:20.976 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:21:20.976 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [0c1a7aad-ff73-4858-8bb4-7721d63e11a6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d3760
11:21:21.190 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
11:21:22.786 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
11:21:22.787 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
11:21:22.787 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
11:21:22.927 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
11:21:25.927 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
11:21:25.928 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
11:21:25.928 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
11:21:26.533 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
11:21:28.048 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of ee929f20-d188-498e-b6f6-4c516ec0489a
11:21:28.048 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] RpcClient init label, labels = {module=naming, source=sdk}
11:21:28.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
11:21:28.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
11:21:28.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
11:21:28.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
11:21:28.281 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698290488386_10.100.1.1_63162
11:21:28.281 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Notify connected event to listeners.
11:21:28.281 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
11:21:28.281 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d3760
11:21:31.044 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
11:21:31.104 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
11:21:31.628 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Receive server push request, request = NotifySubscriberRequest, requestId = 1047
11:21:31.631 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [ee929f20-d188-498e-b6f6-4c516ec0489a] Ack server push request, request = NotifySubscriberRequest, requestId = 1047
11:21:32.577 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 16.402 seconds (JVM running for 17.268)
11:21:32.587 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
11:21:32.588 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
11:21:32.589 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
11:21:33.151 [RMI TCP Connection(3)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
11:21:42.454 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
11:21:42.496 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
11:21:42.819 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
11:21:42.819 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4030f627[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
11:21:42.819 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698290488386_10.100.1.1_63162
11:21:42.823 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@217eff37[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 15]
11:21:42.949 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
11:21:42.951 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
11:21:42.954 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
11:21:42.955 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
20:37:53.638 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
20:37:55.411 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0
20:37:55.455 [main] INFO o.r.Reflections - [scan,232] - Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values
20:37:55.476 [main] INFO o.r.Reflections - [scan,232] - Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values
20:37:55.486 [main] INFO o.r.Reflections - [scan,232] - Reflections took 8 ms to scan 1 urls, producing 3 keys and 10 values
20:37:55.502 [main] INFO o.r.Reflections - [scan,232] - Reflections took 14 ms to scan 1 urls, producing 1 keys and 5 values
20:37:55.509 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
20:37:55.517 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
20:37:55.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
20:37:55.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f639b8
20:37:55.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63bc8
20:37:55.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
20:37:55.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
20:37:55.526 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:37:56.758 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698323875848_10.100.1.1_63171
20:37:56.759 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Notify connected event to listeners.
20:37:56.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:37:56.759 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [01faffcc-0bcd-4694-8f5e-cf0565927c70_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
20:37:56.962 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
20:37:58.891 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
20:37:58.892 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
20:37:58.892 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
20:37:59.042 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
20:38:02.396 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
20:38:02.397 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
20:38:02.397 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
20:38:03.245 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
20:38:04.811 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 114f87f6-1180-4293-a9d5-3a9053b3c557
20:38:04.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] RpcClient init label, labels = {module=naming, source=sdk}
20:38:04.812 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
20:38:04.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
20:38:04.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
20:38:04.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
20:38:05.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698323884193_10.100.1.1_63190
20:38:05.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
20:38:05.042 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Notify connected event to listeners.
20:38:05.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
20:38:08.319 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
20:38:08.378 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
20:38:08.894 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Receive server push request, request = NotifySubscriberRequest, requestId = 1232
20:38:08.898 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Ack server push request, request = NotifySubscriberRequest, requestId = 1232
20:38:09.837 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 17.97 seconds (JVM running for 18.907)
20:38:09.849 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
20:38:09.850 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
20:38:09.851 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
20:38:10.274 [RMI TCP Connection(5)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
20:38:14.525 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
20:38:14.568 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
20:38:15.089 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Receive server push request, request = NotifySubscriberRequest, requestId = 1233
20:38:15.091 [nacos-grpc-client-executor-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [114f87f6-1180-4293-a9d5-3a9053b3c557] Ack server push request, request = NotifySubscriberRequest, requestId = 1233
20:38:15.138 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
20:38:15.138 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@a125d7d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
20:38:15.138 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698323884193_10.100.1.1_63190
20:38:15.142 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5ccef183[Running, pool size = 9, active threads = 0, queued tasks = 0, completed tasks = 13]
20:38:15.269 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
20:38:15.271 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
20:38:15.274 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
20:38:15.275 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye

View File

@ -0,0 +1,115 @@
14:32:34.579 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
14:32:36.426 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0
14:32:36.473 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
14:32:36.495 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
14:32:36.514 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values
14:32:36.522 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
14:32:36.530 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values
14:32:36.537 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
14:32:36.539 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:32:36.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f639b8
14:32:36.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63bc8
14:32:36.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:32:36.541 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:32:36.548 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
14:32:37.812 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698474756231_10.100.1.1_62571
14:32:37.812 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Notify connected event to listeners.
14:32:37.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:32:37.813 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
14:32:38.026 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
14:32:40.071 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
14:32:40.072 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:32:40.072 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
14:32:40.237 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:32:43.401 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
14:32:43.402 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
14:32:43.402 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:32:44.597 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:32:46.153 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 23636459-3f1e-40b4-ad10-cb301edcfa43
14:32:46.153 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] RpcClient init label, labels = {module=naming, source=sdk}
14:32:46.154 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:32:46.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:32:46.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:32:46.155 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
14:32:46.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698474764855_10.100.1.1_62586
14:32:46.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:32:46.387 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Notify connected event to listeners.
14:32:46.387 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
14:32:49.488 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
14:32:49.547 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
14:32:50.051 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Receive server push request, request = NotifySubscriberRequest, requestId = 2343
14:32:50.054 [nacos-grpc-client-executor-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [23636459-3f1e-40b4-ad10-cb301edcfa43] Ack server push request, request = NotifySubscriberRequest, requestId = 2343
14:32:50.992 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 18.199 seconds (JVM running for 19.218)
14:32:51.001 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
14:32:51.002 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
14:32:51.003 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
14:32:51.092 [RMI TCP Connection(3)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
14:39:44.285 [nacos-grpc-client-executor-103] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 2346
14:39:44.286 [nacos-grpc-client-executor-103] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [1ecf809d-3380-46a1-a8ea-a028e3ba9b69_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 2346
14:41:28.365 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
14:41:28.409 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
14:41:28.751 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
14:41:28.751 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@14bceb4d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
14:41:28.751 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698474764855_10.100.1.1_62586
14:41:28.756 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7586ffbc[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 123]
14:41:28.909 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
14:41:28.914 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
14:41:28.925 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
14:41:28.925 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye
14:41:35.593 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.3.Final
14:41:37.409 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of 279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0
14:41:37.455 [main] INFO o.r.Reflections - [scan,232] - Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values
14:41:37.477 [main] INFO o.r.Reflections - [scan,232] - Reflections took 10 ms to scan 1 urls, producing 4 keys and 9 values
14:41:37.497 [main] INFO o.r.Reflections - [scan,232] - Reflections took 18 ms to scan 1 urls, producing 3 keys and 10 values
14:41:37.506 [main] INFO o.r.Reflections - [scan,232] - Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values
14:41:37.514 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values
14:41:37.521 [main] INFO o.r.Reflections - [scan,232] - Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values
14:41:37.523 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown}
14:41:37.524 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000000800f63cd0
14:41:37.524 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000000800f63ee0
14:41:37.524 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1
14:41:37.525 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2
14:41:37.531 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
14:41:38.794 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698475297184_10.100.1.1_63279
14:41:38.795 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Notify connected event to listeners.
14:41:38.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:41:38.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [279b9ab4-04b4-4ada-8005-e5231877b2bd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
14:41:39.011 [main] INFO c.g.i.InformationApplication - [logStartupProfileInfo,640] - The following 1 profile is active: "dev"
14:41:41.044 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10008"]
14:41:41.045 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
14:41:41.045 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.65]
14:41:41.195 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
14:41:44.612 [main] INFO c.a.d.p.DruidDataSource - [init,972] - {dataSource-1,master} inited
14:41:44.613 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,148] - dynamic-datasource - add a datasource named [master] success
14:41:44.613 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,228] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
14:41:45.827 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
14:41:47.396 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,80] - [RpcClientFactory] create a new rpc client of db17f6b1-173a-4e47-8556-e6d2b2e078fe
14:41:47.396 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] RpcClient init label, labels = {module=naming, source=sdk}
14:41:47.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
14:41:47.397 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
14:41:47.398 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
14:41:47.398 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Try to connect to server on start up, server: {serverIp = '10.100.1.3', server main port = 8848}
14:41:47.629 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Success to connect to server [10.100.1.3:8848] on start up, connectionId = 1698475306084_10.100.1.1_63288
14:41:47.629 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Notify connected event to listeners.
14:41:47.629 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
14:41:47.630 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$476/0x00000008010d6000
14:41:50.769 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10008"]
14:41:50.828 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,75] - nacos registry, DEFAULT_GROUP grail-Information 192.168.80.1:10008 register finished
14:41:51.326 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Receive server push request, request = NotifySubscriberRequest, requestId = 2351
14:41:51.329 [nacos-grpc-client-executor-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,60] - [db17f6b1-173a-4e47-8556-e6d2b2e078fe] Ack server push request, request = NotifySubscriberRequest, requestId = 2351
14:41:52.275 [main] INFO c.g.i.InformationApplication - [logStarted,61] - Started InformationApplication in 18.487 seconds (JVM running for 19.506)
14:41:52.284 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information, group=DEFAULT_GROUP
14:41:52.285 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information-dev.yml, group=DEFAULT_GROUP
14:41:52.285 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListenersForApplications,105] - listening config: dataId=grail-Information.yml, group=DEFAULT_GROUP
14:41:52.654 [RMI TCP Connection(2)-10.3.214.20] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
14:41:58.270 [http-nio-10008-exec-1] INFO c.g.i.c.HealthTypeController - [healthTypeList,33] - 功能:将康资讯列表展示 URI:/healthType/healthTypeList,方法:GET,参数:[{"healthTypeId":1,"healthTypeName":"健康要闻","informationList":[{"healthTypeId":"1","informationContent":"xcvgbhnjm,","informationId":1,"informationPicture":"null","informationTime":1697612987000,"informationTitle":"","userId":1}]},{"healthTypeId":2,"healthTypeName":"医学动态","informationList":[]},{"healthTypeId":3,"healthTypeName":"医疗动态","informationList":[]},{"healthTypeId":5,"healthTypeName":"养生美容","informationList":[]},{"healthTypeId":6,"healthTypeName":"健身减肥","informationList":[]}]
14:43:59.315 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,94] - De-registering from Nacos Server now...
14:43:59.360 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,114] - De-registration finished.
14:43:59.687 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,454] - Shutdown rpc client, set status to shutdown
14:43:59.687 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,456] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@75de919[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
14:43:59.688 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,591] - Close current connection 1698475306084_10.100.1.1_63288
14:43:59.691 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,85] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@560232c5[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 49]
14:43:59.818 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,205] - dynamic-datasource start closing ....
14:43:59.820 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2051] - {dataSource-1} closing ...
14:43:59.823 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2124] - {dataSource-1} closed
14:43:59.824 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,209] - dynamic-datasource all closed success,bye

27
pom.xml 100644
View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.grail</groupId>
<artifactId>grail-patient</artifactId>
<version>3.6.3</version>
</parent>
<groupId>com.grail</groupId>
<artifactId>grail-patient-information</artifactId>
<version>3.6.3</version>
<packaging>pom</packaging>
<modules>
<module>grail-patient-information-remote</module>
<module>grail-patient-information-common</module>
<module>grail-patient-information-server</module>
</modules>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>