diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 5ff6309..0000000 --- a/.gitignore +++ /dev/null @@ -1,38 +0,0 @@ -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 \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore index 35410ca..01b5f8c 100644 --- a/.idea/.gitignore +++ b/.idea/.gitignore @@ -6,3 +6,5 @@ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml +# GitHub Copilot persisted chat sessions +/copilot/chatSessions diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..45e8b10 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..2b124b9 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..d3202da --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/hoe-admin/admin-boot/target/classes/bootstrap.yml b/hoe-admin/admin-boot/target/classes/bootstrap.yml new file mode 100644 index 0000000..530d7d3 --- /dev/null +++ b/hoe-admin/admin-boot/target/classes/bootstrap.yml @@ -0,0 +1,78 @@ + +spring: + application: + name: hoe-admin + main: + allow-bean-definition-overriding: true + profiles: + active: dev + cloud: + nacos: + discovery: + # metadata: + # serviceGroup: ytChen + server-addr: localhost:8848 + namespace: 11bfd099-10d6-4f2c-b969-58b76e435cce + config: + server-addr: localhost:8848 + file-extension: yaml + prefix: hoe-admin + group: dev + namespace: 11bfd099-10d6-4f2c-b969-58b76e435cce + dynamic: + tp: + enabled: true + enabledBanner: true # 是否开启banner打印,默认true + enabledCollect: true # 是否开启监控指标采集,默认false + collectorTypes: micrometer,logging # 监控数据采集器类型(logging | micrometer | internal_logging),默认micrometer + logPath: /home/logs # 监控日志数据路径,默认 ${user.home}/logs,采集类型非logging不用配置 + monitorInterval: 5 # 监控时间间隔(报警判断、指标采集),默认5s + platforms: # 通知报警平台配置 + - platform: email + receivers: 1650611030@qq.com + tomcatTp: # tomcat webserver线程池配置 + corePoolSize: 100 + maximumPoolSize: 200 + keepAliveTime: 60 + executors: # 动态线程池配置 + - threadPoolName: dtpExecutor + # 线程池别名 + executorType: common # 线程池类型common、eager:适用于io密集型 + corePoolSize: 5 # 核心线程数 + maximumPoolSize: 18 # 最大线程数 + queueCapacity: 400 # 任务队列容量 + queueType: VariableLinkedBlockingQueue # 任务队列,查看源码QueueTypeEnum枚举类 + rejectedHandlerType: CallerRunsPolicy # 拒绝策略,查看RejectedTypeEnum枚举类 + keepAliveTime: 50 + allowCoreThreadTimeOut: false # 是否允许核心线程池超时 + threadNamePrefix: test # 线程名前缀 + waitForTasksToCompleteOnShutdown: false # 参考spring线程池设计,优雅关闭线程池 + awaitTerminationSeconds: 5 # 单位(s) + preStartAllCoreThreads: false # 是否预热所有核心线程,默认false + runTimeout: 200 # 任务执行超时阈值,目前只做告警用,单位(ms) + queueTimeout: 100 # 任务在队列等待超时阈值,目前只做告警用,单位(ms) + taskWrapperNames: [ "ttl" ] # 任务包装器名称,集成TaskWrapper接口 + notifyItems: # 报警项,不配置自动会按默认值配置(变更通知、容量报警、活性报警、拒绝报警、任务超时报警) + - type: capacity # 报警项类型,查看源码 NotifyTypeEnum枚举类 + enabled: true + threshold: 80 # 报警阈值 + platforms: [ ding,wechat ] # 可选配置,不配置默认拿上层platforms配置的所以平台 + interval: 120 # 报警间隔(单位:s) + - type: change + enabled: true + - type: liveness + enabled: true + threshold: 80 + - type: reject + enabled: true + threshold: 1 + - type: run_timeout + enabled: true + threshold: 1 + - type: queue_timeout + enabled: true + threshold: 1 + +server: + port: 9002 + diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/AdminApp.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/AdminApp.class new file mode 100644 index 0000000..a8939ac Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/AdminApp.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/aspect/WebLogAspect.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/aspect/WebLogAspect.class new file mode 100644 index 0000000..1d7756a Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/aspect/WebLogAspect.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/CorsConfig.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/CorsConfig.class new file mode 100644 index 0000000..e441f1b Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/CorsConfig.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig$1.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig$1.class new file mode 100644 index 0000000..b0aecf0 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig$1.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig$2.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig$2.class new file mode 100644 index 0000000..473c42c Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig$2.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig.class new file mode 100644 index 0000000..efcb356 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/DynamicThreadPoolConfig.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/InterceptConfig.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/InterceptConfig.class new file mode 100644 index 0000000..23b5ba5 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/InterceptConfig.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/SaTokenConfigure.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/SaTokenConfigure.class new file mode 100644 index 0000000..cbfa8ff Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/SaTokenConfigure.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/ds/DataSourceConfig.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/ds/DataSourceConfig.class new file mode 100644 index 0000000..b2b15a4 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/config/ds/DataSourceConfig.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/OauthClientController.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/OauthClientController.class new file mode 100644 index 0000000..8876b25 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/OauthClientController.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/UserController.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/UserController.class new file mode 100644 index 0000000..389cddd Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/UserController.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/testController.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/testController.class new file mode 100644 index 0000000..87d73ad Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/controller/testController.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/MemberUser.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/MemberUser.class new file mode 100644 index 0000000..4996e8a Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/MemberUser.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/SysOauthClient.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/SysOauthClient.class new file mode 100644 index 0000000..291263d Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/SysOauthClient.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/SysPermission.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/SysPermission.class new file mode 100644 index 0000000..184999c Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/SysPermission.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/User.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/User.class new file mode 100644 index 0000000..579357a Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/entity/User.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/exception/BusinessException.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/exception/BusinessException.class new file mode 100644 index 0000000..760fc7e Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/exception/BusinessException.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/exception/GlobalExceptionHandler.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/exception/GlobalExceptionHandler.class new file mode 100644 index 0000000..675d362 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/exception/GlobalExceptionHandler.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/filter/RequestWrapper$1.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/filter/RequestWrapper$1.class new file mode 100644 index 0000000..10f689b Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/filter/RequestWrapper$1.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/filter/RequestWrapper.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/filter/RequestWrapper.class new file mode 100644 index 0000000..5eb0277 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/filter/RequestWrapper.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/interceptor/JwtInterceptor.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/interceptor/JwtInterceptor.class new file mode 100644 index 0000000..15c2cd8 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/interceptor/JwtInterceptor.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/listener/InitResourcePermissionCache.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/listener/InitResourcePermissionCache.class new file mode 100644 index 0000000..a3ec626 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/listener/InitResourcePermissionCache.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/MemberUserMapper.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/MemberUserMapper.class new file mode 100644 index 0000000..6bf8904 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/MemberUserMapper.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/SysOauthClientMapper.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/SysOauthClientMapper.class new file mode 100644 index 0000000..ec163e9 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/SysOauthClientMapper.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/SysPermissionMapper.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/SysPermissionMapper.class new file mode 100644 index 0000000..e1f681b Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/SysPermissionMapper.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/UserMapper.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/UserMapper.class new file mode 100644 index 0000000..9e9b3d1 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/mapper/UserMapper.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/rest/UserRest.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/rest/UserRest.class new file mode 100644 index 0000000..92f5c0e Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/rest/UserRest.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/IMemberUserService.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/IMemberUserService.class new file mode 100644 index 0000000..98e4890 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/IMemberUserService.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysOauthClientService.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysOauthClientService.class new file mode 100644 index 0000000..9d6db97 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysOauthClientService.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysPermissionService.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysPermissionService.class new file mode 100644 index 0000000..8e5bfa5 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysPermissionService.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysUserService.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysUserService.class new file mode 100644 index 0000000..b14f105 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/ISysUserService.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/MemberUserServiceImpl.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/MemberUserServiceImpl.class new file mode 100644 index 0000000..4f02373 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/MemberUserServiceImpl.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysOauthClientServiceImpl.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysOauthClientServiceImpl.class new file mode 100644 index 0000000..132019e Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysOauthClientServiceImpl.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysPermissionServiceImpl.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysPermissionServiceImpl.class new file mode 100644 index 0000000..0a96dfe Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysPermissionServiceImpl.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysUserServiceImpl.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysUserServiceImpl.class new file mode 100644 index 0000000..d718853 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/service/impl/SysUserServiceImpl.class differ diff --git a/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/util/UserUtil.class b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/util/UserUtil.class new file mode 100644 index 0000000..40a7197 Binary files /dev/null and b/hoe-admin/admin-boot/target/classes/com/recovery/admin/boot/util/UserUtil.class differ diff --git a/hoe-admin/admin-boot/target/classes/logback-bak.xml b/hoe-admin/admin-boot/target/classes/logback-bak.xml new file mode 100644 index 0000000..76945c1 --- /dev/null +++ b/hoe-admin/admin-boot/target/classes/logback-bak.xml @@ -0,0 +1,53 @@ + + + logback + + + + + + + + + ${consoleLayoutPattern} + + + + + + ${SYS_LOG_DIR}/${LOG_FILE} + + WARN + ACCEPT + DENY + + + ${SYS_LOG_DIR}/%d{yyyy-MM-dd}/${LOG_FILE}_%d{yyyy-MM-dd}_%i.zip + + 50MB + + + + ${fileLayoutPattern} + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/hoe-admin/admin-boot/target/classes/logback-spring.xml b/hoe-admin/admin-boot/target/classes/logback-spring.xml new file mode 100644 index 0000000..d2f4072 --- /dev/null +++ b/hoe-admin/admin-boot/target/classes/logback-spring.xml @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + true + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %highlight(%-5level) %cyan(%logger{15}) - %highlight(%msg) %n + + + + + + + + + + ERROR + ACCEPT + DENY + + + + + ${log_dir}/%d{yyyy-MM-dd}/error-log.log + + ${maxHistory} + + + + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n + + + + + + + + + + WARN + ACCEPT + DENY + + + + ${log_dir}/%d{yyyy-MM-dd}/warn-log.log + + + ${maxHistory} + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n + + + + + + + + + + + INFO + ACCEPT + DENY + + + + ${log_dir}/%d{yyyy-MM-dd}/info-log.log + + + ${maxHistory} + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n + + + + + + + + + + + DEBUG + ACCEPT + DENY + + + + ${log_dir}/%d{yyyy-MM-dd}/debug-log.log + + + ${maxHistory} + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n + + + + + + + + + + + TRACE + ACCEPT + DENY + + + + ${log_dir}/%d{yyyy-MM-dd}/trace-log.log + + + ${maxHistory} + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/hoe-admin/admin-boot/target/classes/mapper/MemberUserMapper.xml b/hoe-admin/admin-boot/target/classes/mapper/MemberUserMapper.xml new file mode 100644 index 0000000..3b83b25 --- /dev/null +++ b/hoe-admin/admin-boot/target/classes/mapper/MemberUserMapper.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + id + ,username,nickname, + gender,password,dept_id, + avatar,mobile,status, + email,gmt_create,gmt_modified, + deleted + + + + + + + + + + + + + + + diff --git a/hoe-admin/admin-boot/target/classes/mapper/SysPermissionMapper.xml b/hoe-admin/admin-boot/target/classes/mapper/SysPermissionMapper.xml new file mode 100644 index 0000000..164658d --- /dev/null +++ b/hoe-admin/admin-boot/target/classes/mapper/SysPermissionMapper.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + id + ,name,menu_id, + url_perm,btn_perm,gmt_create, + gmt_modified + + + + + diff --git a/hoe-admin/admin-boot/target/classes/mapper/UserMapper.xml b/hoe-admin/admin-boot/target/classes/mapper/UserMapper.xml new file mode 100644 index 0000000..fdd9792 --- /dev/null +++ b/hoe-admin/admin-boot/target/classes/mapper/UserMapper.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/hoe-auth/src/main/java/com/recovery/auth/security/details/user/JwtAuthenticationRequest.java b/hoe-auth/src/main/java/com/recovery/auth/security/details/user/JwtAuthenticationRequest.java new file mode 100644 index 0000000..342f09e --- /dev/null +++ b/hoe-auth/src/main/java/com/recovery/auth/security/details/user/JwtAuthenticationRequest.java @@ -0,0 +1,74 @@ +package com.recovery.auth.security.details.user; + +import java.io.Serializable; + +public class JwtAuthenticationRequest implements Serializable { + + private static final long serialVersionUID = -8445943548965154778L; + + private String username; + private String phone; + private String password; + private String verifyCode; + private String loginMethod; + private String visitorsType; + + public JwtAuthenticationRequest(String username,String phone,String password,String verifyCode,String loginMethod,String visitorsType) { + this.username = username; + this.phone = phone; + this.password = password; + this.verifyCode = verifyCode; + this.loginMethod = loginMethod; + this.visitorsType = visitorsType; + } + + public JwtAuthenticationRequest() { + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getUserPhone() { + return phone; + } + + public void setUserPhone(String phone) { + this.phone = phone; + } + + public String getVerifyCode() { + return verifyCode; + } + + public void setVerifyCode(String verifyCode) { + this.verifyCode = verifyCode; + } + + public String getLoginMethod() { + return loginMethod; + } + + public void setLoginMethod(String loginMethod) { + this.loginMethod = loginMethod; + } + public String getVisitorsType() { + return visitorsType; + } + + public void setVisitorsType(String visitorsType) { + this.visitorsType = visitorsType; + } +} diff --git a/hoe-auth/target/classes/bootstrap.yml b/hoe-auth/target/classes/bootstrap.yml new file mode 100644 index 0000000..df92dee --- /dev/null +++ b/hoe-auth/target/classes/bootstrap.yml @@ -0,0 +1,35 @@ + +spring: + application: + name: hoe-auth + main: + allow-bean-definition-overriding: true + profiles: + active: dev + cloud: + nacos: + discovery: + metadata: + serviceGroup: ytChen + server-addr: localhost:8848 + namespace: 11bfd099-10d6-4f2c-b969-58b76e435cce + config: + server-addr: localhost:8848 + file-extension: yaml + prefix: hoe-auth + group: dev + namespace: 11bfd099-10d6-4f2c-b969-58b76e435cce +server: + port: 9001 + + + +sa-token: + # jwt秘钥 + jwt-secret-key: asdasdasifhueuiwyurfewbfjsdafjk123 + token-name: satoken + timeout: -1 + active-timeout: -1 + is-concurrent: false + is-share: false + is-log: true diff --git a/hoe-auth/target/classes/com/recovery/auth/AuthApp.class b/hoe-auth/target/classes/com/recovery/auth/AuthApp.class new file mode 100644 index 0000000..8a69ce2 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/AuthApp.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/TestController.class b/hoe-auth/target/classes/com/recovery/auth/TestController.class new file mode 100644 index 0000000..a422a9a Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/TestController.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/aspect/WebLogAspect.class b/hoe-auth/target/classes/com/recovery/auth/aspect/WebLogAspect.class new file mode 100644 index 0000000..875c0af Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/aspect/WebLogAspect.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/comm/test.class b/hoe-auth/target/classes/com/recovery/auth/comm/test.class new file mode 100644 index 0000000..eb8867d Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/comm/test.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/config/SaTokenConfigure.class b/hoe-auth/target/classes/com/recovery/auth/config/SaTokenConfigure.class new file mode 100644 index 0000000..5953c32 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/config/SaTokenConfigure.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/config/ds/DataSourceConfig.class b/hoe-auth/target/classes/com/recovery/auth/config/ds/DataSourceConfig.class new file mode 100644 index 0000000..58bc40e Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/config/ds/DataSourceConfig.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/config/ds/TeachingDataSourceConfig.class b/hoe-auth/target/classes/com/recovery/auth/config/ds/TeachingDataSourceConfig.class new file mode 100644 index 0000000..d03167a Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/config/ds/TeachingDataSourceConfig.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/controller/AuthController.class b/hoe-auth/target/classes/com/recovery/auth/controller/AuthController.class new file mode 100644 index 0000000..19bc245 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/controller/AuthController.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/exception/BusinessException.class b/hoe-auth/target/classes/com/recovery/auth/exception/BusinessException.class new file mode 100644 index 0000000..e0f6048 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/exception/BusinessException.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/exception/GlobalExceptionHandler.class b/hoe-auth/target/classes/com/recovery/auth/exception/GlobalExceptionHandler.class new file mode 100644 index 0000000..e7910dd Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/exception/GlobalExceptionHandler.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/feign/UserFeignClient.class b/hoe-auth/target/classes/com/recovery/auth/feign/UserFeignClient.class new file mode 100644 index 0000000..eb6fdb0 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/feign/UserFeignClient.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/mapper/OauthClientDetailsMapper.class b/hoe-auth/target/classes/com/recovery/auth/mapper/OauthClientDetailsMapper.class new file mode 100644 index 0000000..0f328b4 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/mapper/OauthClientDetailsMapper.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/rest/UserRest.class b/hoe-auth/target/classes/com/recovery/auth/rest/UserRest.class new file mode 100644 index 0000000..d48fbf4 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/rest/UserRest.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/security/details/user/JwtAuthenticationRequest.class b/hoe-auth/target/classes/com/recovery/auth/security/details/user/JwtAuthenticationRequest.class new file mode 100644 index 0000000..efaa938 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/security/details/user/JwtAuthenticationRequest.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/service/AuthService.class b/hoe-auth/target/classes/com/recovery/auth/service/AuthService.class new file mode 100644 index 0000000..7681c6a Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/service/AuthService.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/service/OauthClientDetailsService.class b/hoe-auth/target/classes/com/recovery/auth/service/OauthClientDetailsService.class new file mode 100644 index 0000000..b205b89 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/service/OauthClientDetailsService.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/service/impl/AuthServiceImpl.class b/hoe-auth/target/classes/com/recovery/auth/service/impl/AuthServiceImpl.class new file mode 100644 index 0000000..727e310 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/service/impl/AuthServiceImpl.class differ diff --git a/hoe-auth/target/classes/com/recovery/auth/service/impl/OauthClientDetailsServiceImpl.class b/hoe-auth/target/classes/com/recovery/auth/service/impl/OauthClientDetailsServiceImpl.class new file mode 100644 index 0000000..16dd8d6 Binary files /dev/null and b/hoe-auth/target/classes/com/recovery/auth/service/impl/OauthClientDetailsServiceImpl.class differ diff --git a/hoe-auth/target/classes/jwt.jks b/hoe-auth/target/classes/jwt.jks new file mode 100644 index 0000000..4b797d0 Binary files /dev/null and b/hoe-auth/target/classes/jwt.jks differ diff --git a/hoe-auth/target/classes/mapper/OauthClientDetailsMapper.xml b/hoe-auth/target/classes/mapper/OauthClientDetailsMapper.xml new file mode 100644 index 0000000..65e9535 --- /dev/null +++ b/hoe-auth/target/classes/mapper/OauthClientDetailsMapper.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/GlobalCorsConfig.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/GlobalCorsConfig.class new file mode 100644 index 0000000..0910cc6 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/GlobalCorsConfig.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/RedisConfig.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/RedisConfig.class new file mode 100644 index 0000000..76d3fdd Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/RedisConfig.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/feign/CommonRequestInterceptor.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/feign/CommonRequestInterceptor.class new file mode 100644 index 0000000..1b8c09b Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/feign/CommonRequestInterceptor.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/feign/FeignConfiguration.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/feign/FeignConfiguration.class new file mode 100644 index 0000000..2f6d510 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/feign/FeignConfiguration.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/BaseRedisCache.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/BaseRedisCache.class new file mode 100644 index 0000000..1a2198d Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/BaseRedisCache.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/BaseRedisCacheImpl.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/BaseRedisCacheImpl.class new file mode 100644 index 0000000..b92487d Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/BaseRedisCacheImpl.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/RedisCache.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/RedisCache.class new file mode 100644 index 0000000..27a568a Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/RedisCache.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/RedisCacheImpl.class b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/RedisCacheImpl.class new file mode 100644 index 0000000..12c99d8 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/config/redis/RedisCacheImpl.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/constant/Constants.class b/hoe-common/common-base/target/classes/com/recovery/common/base/constant/Constants.class new file mode 100644 index 0000000..aebbf30 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/constant/Constants.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/constant/GlobalConstants.class b/hoe-common/common-base/target/classes/com/recovery/common/base/constant/GlobalConstants.class new file mode 100644 index 0000000..a9272d0 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/constant/GlobalConstants.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/constant/SecurityConstants.class b/hoe-common/common-base/target/classes/com/recovery/common/base/constant/SecurityConstants.class new file mode 100644 index 0000000..9118f38 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/constant/SecurityConstants.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/ds/DataSourceContextHolder.class b/hoe-common/common-base/target/classes/com/recovery/common/base/ds/DataSourceContextHolder.class new file mode 100644 index 0000000..ab1fe4b Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/ds/DataSourceContextHolder.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/ds/DynamicDataSource.class b/hoe-common/common-base/target/classes/com/recovery/common/base/ds/DynamicDataSource.class new file mode 100644 index 0000000..8afc2df Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/ds/DynamicDataSource.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/dto/MemberUserAuthDTO.class b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/MemberUserAuthDTO.class new file mode 100644 index 0000000..cd5d9f8 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/MemberUserAuthDTO.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/dto/OAuth2ClientDTO.class b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/OAuth2ClientDTO.class new file mode 100644 index 0000000..fd61280 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/OAuth2ClientDTO.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/dto/RolePermissionDTO.class b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/RolePermissionDTO.class new file mode 100644 index 0000000..a7353cd Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/RolePermissionDTO.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/dto/UserAuthDTO.class b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/UserAuthDTO.class new file mode 100644 index 0000000..2635a86 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/UserAuthDTO.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/dto/UserAuthorityDto.class b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/UserAuthorityDto.class new file mode 100644 index 0000000..d8060fe Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/dto/UserAuthorityDto.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/enums/ClientEnums.class b/hoe-common/common-base/target/classes/com/recovery/common/base/enums/ClientEnums.class new file mode 100644 index 0000000..6a04b75 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/enums/ClientEnums.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/enums/PasswordEncoderTypeEnum.class b/hoe-common/common-base/target/classes/com/recovery/common/base/enums/PasswordEncoderTypeEnum.class new file mode 100644 index 0000000..8fab25d Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/enums/PasswordEncoderTypeEnum.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/po/base/DBInfo.class b/hoe-common/common-base/target/classes/com/recovery/common/base/po/base/DBInfo.class new file mode 100644 index 0000000..8dc0b98 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/po/base/DBInfo.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/po/base/OauthClientDetails.class b/hoe-common/common-base/target/classes/com/recovery/common/base/po/base/OauthClientDetails.class new file mode 100644 index 0000000..3f3db48 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/po/base/OauthClientDetails.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/result/ApiResult.class b/hoe-common/common-base/target/classes/com/recovery/common/base/result/ApiResult.class new file mode 100644 index 0000000..1f4d22c Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/result/ApiResult.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/result/IResultCode.class b/hoe-common/common-base/target/classes/com/recovery/common/base/result/IResultCode.class new file mode 100644 index 0000000..16cef38 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/result/IResultCode.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/result/ResultCode.class b/hoe-common/common-base/target/classes/com/recovery/common/base/result/ResultCode.class new file mode 100644 index 0000000..126f0d1 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/result/ResultCode.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/util/EncryptUtil.class b/hoe-common/common-base/target/classes/com/recovery/common/base/util/EncryptUtil.class new file mode 100644 index 0000000..de46dd7 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/util/EncryptUtil.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/util/HspHostUtil.class b/hoe-common/common-base/target/classes/com/recovery/common/base/util/HspHostUtil.class new file mode 100644 index 0000000..7bb991e Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/util/HspHostUtil.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/util/RedisUtil.class b/hoe-common/common-base/target/classes/com/recovery/common/base/util/RedisUtil.class new file mode 100644 index 0000000..bf244d6 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/util/RedisUtil.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/util/UtilTools.class b/hoe-common/common-base/target/classes/com/recovery/common/base/util/UtilTools.class new file mode 100644 index 0000000..d634422 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/util/UtilTools.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/utils/JwtUtils.class b/hoe-common/common-base/target/classes/com/recovery/common/base/utils/JwtUtils.class new file mode 100644 index 0000000..64bc965 Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/utils/JwtUtils.class differ diff --git a/hoe-common/common-base/target/classes/com/recovery/common/base/utils/RedisUtils.class b/hoe-common/common-base/target/classes/com/recovery/common/base/utils/RedisUtils.class new file mode 100644 index 0000000..f70b10b Binary files /dev/null and b/hoe-common/common-base/target/classes/com/recovery/common/base/utils/RedisUtils.class differ diff --git a/hoe-common/common-mybatis-plus/target/classes/META-INF/spring.factories b/hoe-common/common-mybatis-plus/target/classes/META-INF/spring.factories new file mode 100644 index 0000000..69cad5c --- /dev/null +++ b/hoe-common/common-mybatis-plus/target/classes/META-INF/spring.factories @@ -0,0 +1,4 @@ +org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ + com.recovery.common.mybatis.config.MybatisPlusConfig,\ + com.recovery.common.mybatis.handler.MyMetaObjectHandler + diff --git a/hoe-common/common-mybatis-plus/target/classes/com/recovery/common/mybatis/config/MybatisPlusConfig.class b/hoe-common/common-mybatis-plus/target/classes/com/recovery/common/mybatis/config/MybatisPlusConfig.class new file mode 100644 index 0000000..f072786 Binary files /dev/null and b/hoe-common/common-mybatis-plus/target/classes/com/recovery/common/mybatis/config/MybatisPlusConfig.class differ diff --git a/hoe-common/common-mybatis-plus/target/classes/com/recovery/common/mybatis/handler/MyMetaObjectHandler.class b/hoe-common/common-mybatis-plus/target/classes/com/recovery/common/mybatis/handler/MyMetaObjectHandler.class new file mode 100644 index 0000000..5c88bea Binary files /dev/null and b/hoe-common/common-mybatis-plus/target/classes/com/recovery/common/mybatis/handler/MyMetaObjectHandler.class differ diff --git a/hoe-common/common-web/target/classes/META-INF/spring.factories b/hoe-common/common-web/target/classes/META-INF/spring.factories new file mode 100644 index 0000000..df84551 --- /dev/null +++ b/hoe-common/common-web/target/classes/META-INF/spring.factories @@ -0,0 +1,4 @@ +org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ + com.recovery.common.web.config.FeignConfig,\ + com.recovery.common.web.exception.GlobalExceptionHandler + diff --git a/hoe-common/common-web/target/classes/com/recovery/common/web/config/FeignConfig.class b/hoe-common/common-web/target/classes/com/recovery/common/web/config/FeignConfig.class new file mode 100644 index 0000000..23dbf31 Binary files /dev/null and b/hoe-common/common-web/target/classes/com/recovery/common/web/config/FeignConfig.class differ diff --git a/hoe-common/common-web/target/classes/com/recovery/common/web/exception/BizException.class b/hoe-common/common-web/target/classes/com/recovery/common/web/exception/BizException.class new file mode 100644 index 0000000..13c764b Binary files /dev/null and b/hoe-common/common-web/target/classes/com/recovery/common/web/exception/BizException.class differ diff --git a/hoe-common/common-web/target/classes/com/recovery/common/web/exception/GlobalExceptionHandler.class b/hoe-common/common-web/target/classes/com/recovery/common/web/exception/GlobalExceptionHandler.class new file mode 100644 index 0000000..3c4005d Binary files /dev/null and b/hoe-common/common-web/target/classes/com/recovery/common/web/exception/GlobalExceptionHandler.class differ diff --git a/hoe-common/common-web/target/classes/com/recovery/common/web/log/HttpAspect.class b/hoe-common/common-web/target/classes/com/recovery/common/web/log/HttpAspect.class new file mode 100644 index 0000000..a6dea9c Binary files /dev/null and b/hoe-common/common-web/target/classes/com/recovery/common/web/log/HttpAspect.class differ diff --git a/hoe-common/common-web/target/classes/com/recovery/common/web/sentinel/DefaultBlockExceptionHandler.class b/hoe-common/common-web/target/classes/com/recovery/common/web/sentinel/DefaultBlockExceptionHandler.class new file mode 100644 index 0000000..571f1e8 Binary files /dev/null and b/hoe-common/common-web/target/classes/com/recovery/common/web/sentinel/DefaultBlockExceptionHandler.class differ diff --git a/hoe-common/common-web/target/classes/com/recovery/common/web/sentinel/RequestOriginParserDefinition.class b/hoe-common/common-web/target/classes/com/recovery/common/web/sentinel/RequestOriginParserDefinition.class new file mode 100644 index 0000000..5f067b8 Binary files /dev/null and b/hoe-common/common-web/target/classes/com/recovery/common/web/sentinel/RequestOriginParserDefinition.class differ diff --git a/hoe-gateway/target/classes/META-INF/spring-configuration-metadata.json b/hoe-gateway/target/classes/META-INF/spring-configuration-metadata.json new file mode 100644 index 0000000..ed0b137 --- /dev/null +++ b/hoe-gateway/target/classes/META-INF/spring-configuration-metadata.json @@ -0,0 +1,11 @@ +{ + "groups": [ + { + "name": "security", + "type": "com.recovery.gateway.security.ResourceServerManager", + "sourceType": "com.recovery.gateway.security.ResourceServerManager" + } + ], + "properties": [], + "hints": [] +} \ No newline at end of file diff --git a/hoe-gateway/target/classes/bootstrap.yml b/hoe-gateway/target/classes/bootstrap.yml new file mode 100644 index 0000000..1f4767e --- /dev/null +++ b/hoe-gateway/target/classes/bootstrap.yml @@ -0,0 +1,23 @@ + +spring: + application: + name: hoe-gateway + main: + allow-bean-definition-overriding: true + profiles: + active: dev + cloud: + nacos: + discovery: + # metadata: + # serviceGroup: ytChen + server-addr: localhost:8848 + namespace: 11bfd099-10d6-4f2c-b969-58b76e435cce + config: + server-addr: localhost:8848 + file-extension: yaml + prefix: hoe-gateway + group: dev + namespace: 11bfd099-10d6-4f2c-b969-58b76e435cce +server: + port: 9000 diff --git a/hoe-gateway/target/classes/com/recovery/gateway/GatewayApp.class b/hoe-gateway/target/classes/com/recovery/gateway/GatewayApp.class new file mode 100644 index 0000000..a522ca2 Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/GatewayApp.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/config/SaTokenConfigure.class b/hoe-gateway/target/classes/com/recovery/gateway/config/SaTokenConfigure.class new file mode 100644 index 0000000..74cd8a1 Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/config/SaTokenConfigure.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/config/SecretStoreRunner.class b/hoe-gateway/target/classes/com/recovery/gateway/config/SecretStoreRunner.class new file mode 100644 index 0000000..121fba8 Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/config/SecretStoreRunner.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/security/ResourceServerConfig.class b/hoe-gateway/target/classes/com/recovery/gateway/security/ResourceServerConfig.class new file mode 100644 index 0000000..5eea486 Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/security/ResourceServerConfig.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/security/ResourceServerManager.class b/hoe-gateway/target/classes/com/recovery/gateway/security/ResourceServerManager.class new file mode 100644 index 0000000..ee712ea Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/security/ResourceServerManager.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/security/SecurityGlobalFilter.class b/hoe-gateway/target/classes/com/recovery/gateway/security/SecurityGlobalFilter.class new file mode 100644 index 0000000..e39e9dc Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/security/SecurityGlobalFilter.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/task/DataInitTask.class b/hoe-gateway/target/classes/com/recovery/gateway/task/DataInitTask.class new file mode 100644 index 0000000..12162fa Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/task/DataInitTask.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/util/ResponseUtils$1.class b/hoe-gateway/target/classes/com/recovery/gateway/util/ResponseUtils$1.class new file mode 100644 index 0000000..5294c10 Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/util/ResponseUtils$1.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/util/ResponseUtils.class b/hoe-gateway/target/classes/com/recovery/gateway/util/ResponseUtils.class new file mode 100644 index 0000000..7e5d48a Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/util/ResponseUtils.class differ diff --git a/hoe-gateway/target/classes/com/recovery/gateway/util/UrlPatternUtils.class b/hoe-gateway/target/classes/com/recovery/gateway/util/UrlPatternUtils.class new file mode 100644 index 0000000..14d0e5d Binary files /dev/null and b/hoe-gateway/target/classes/com/recovery/gateway/util/UrlPatternUtils.class differ diff --git a/logs/common/2024-03-07/debug-log.log b/logs/common/2024-03-07/debug-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-07/error-log.log b/logs/common/2024-03-07/error-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-07/info-log.log b/logs/common/2024-03-07/info-log.log new file mode 100644 index 0000000..fcf9fc8 --- /dev/null +++ b/logs/common/2024-03-07/info-log.log @@ -0,0 +1,155 @@ +2024-03-07 14:49:23.196 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-07 14:49:24.202 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-07 14:49:24.241 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-07 14:49:24.273 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-07 14:49:24.282 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-07 14:49:24.288 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-07 14:49:25.709 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-07 14:49:25.713 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-07 14:49:25.761 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 22 ms. Found 0 Redis repository interfaces. +2024-03-07 14:49:26.105 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=1b51f256-7441-363f-8f43-fd9521befb66 +2024-03-07 14:49:26.680 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-07 14:49:26.686 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-07 14:49:27.046 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-07 14:49:27.059 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-07 14:49:27.059 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-07 14:49:27.060 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-07 14:49:27.207 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-07 14:49:27.207 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2887 ms +2024-03-07 14:49:27.274 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-07 14:50:12.892 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-07 14:50:15.907 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-07 14:50:15.907 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-07 14:50:15.907 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-07 14:50:16.022 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-07 14:50:16.046 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-07 14:50:16.053 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-07 14:50:16.054 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-07 14:50:16.096 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-07 14:50:16.528 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 54.846 seconds (JVM running for 57.972) +2024-03-07 14:50:16.529 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-07 14:50:16.532 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 14:50:16.534 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-07 14:50:16.534 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 14:50:16.534 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-07 14:50:16.534 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 14:50:16.534 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-07 14:50:17.047 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 14:50:17.052 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 14:50:17.106 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1709794217105,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":608212496864400} from /192.168.110.210 +2024-03-07 14:50:36.493 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-07 14:50:36.493 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-07 14:50:36.494 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-07 14:50:36.498 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-07 14:50:36.499 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-07 14:50:37.075 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 14:50:37.076 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-07 14:50:37.516 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1709794237514,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":608232905953700} from /192.168.110.210 +2024-03-07 14:50:39.528 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-07 14:50:39.528 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-07 14:50:42.570 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-07 14:50:45.586 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-07 14:50:45.586 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-07 14:50:45.587 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-07 14:50:45.587 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-07 14:50:45.587 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-07 14:50:45.588 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-07 14:50:45.588 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-07 14:50:45.588 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-07 14:50:56.533 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-07 14:50:57.536 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-07 14:50:57.572 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-07 14:50:57.607 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-07 14:50:57.621 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-07 14:50:57.629 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-07 14:50:58.732 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-07 14:50:58.736 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-07 14:50:58.776 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces. +2024-03-07 14:50:59.064 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=1b51f256-7441-363f-8f43-fd9521befb66 +2024-03-07 14:50:59.603 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-07 14:50:59.609 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-07 14:50:59.982 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-07 14:50:59.995 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-07 14:50:59.996 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-07 14:50:59.996 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-07 14:51:00.146 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-07 14:51:00.146 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2471 ms +2024-03-07 14:51:00.209 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-07 14:51:11.719 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-07 14:51:14.871 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-07 14:51:14.872 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-07 14:51:14.873 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-07 14:51:15.032 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-07 14:51:15.063 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-07 14:51:15.071 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-07 14:51:15.072 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-07 14:51:15.078 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-07 14:51:15.531 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 20.528 seconds (JVM running for 22.453) +2024-03-07 14:51:15.533 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-07 14:51:15.537 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 14:51:15.538 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-07 14:51:15.539 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 14:51:15.539 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-07 14:51:15.539 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 14:51:15.539 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-07 14:51:16.071 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 14:51:16.079 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 14:51:16.087 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1709794276085,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":608271477809600} from /192.168.110.210 +2024-03-07 15:05:30.451 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-07 15:05:30.451 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-07 15:05:30.452 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-07 15:05:30.456 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-07 15:05:30.456 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-07 15:05:31.461 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1709795131460,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":609126852462400} from /192.168.110.210 +2024-03-07 15:05:31.462 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 15:05:31.463 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-07 15:05:31.822 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-07 15:05:31.822 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-07 15:05:34.837 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-07 15:05:37.875 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-07 15:05:37.875 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-07 15:05:37.876 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-07 15:05:37.876 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-07 15:05:37.876 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-07 15:05:37.877 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-07 15:05:37.878 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-07 15:05:37.878 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-07 15:05:48.188 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-07 15:05:49.329 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-07 15:05:49.366 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-07 15:05:49.405 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-07 15:05:49.417 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-07 15:05:49.423 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-07 15:05:50.487 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-07 15:05:50.490 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-07 15:05:50.532 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 16 ms. Found 0 Redis repository interfaces. +2024-03-07 15:05:50.848 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=1b51f256-7441-363f-8f43-fd9521befb66 +2024-03-07 15:05:51.501 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-07 15:05:51.508 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-07 15:05:51.928 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-07 15:05:51.941 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-07 15:05:51.942 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-07 15:05:51.942 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-07 15:05:52.099 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-07 15:05:52.100 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2639 ms +2024-03-07 15:05:52.185 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-07 15:05:55.580 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-07 15:05:58.500 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-07 15:05:58.501 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-07 15:05:58.501 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-07 15:05:58.618 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-07 15:05:58.639 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-07 15:05:58.645 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-07 15:05:58.646 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-07 15:05:58.650 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-07 15:05:59.060 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 12.409 seconds (JVM running for 14.378) +2024-03-07 15:05:59.061 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-07 15:05:59.065 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 15:05:59.067 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-07 15:05:59.067 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 15:05:59.067 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-07 15:05:59.067 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-07 15:05:59.067 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-07 15:05:59.644 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 15:05:59.650 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-07 15:05:59.656 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1709795159655,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":609155046448400} from /192.168.110.210 diff --git a/logs/common/2024-03-07/trace-log.log b/logs/common/2024-03-07/trace-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-07/warn-log.log b/logs/common/2024-03-07/warn-log.log new file mode 100644 index 0000000..f5b7425 --- /dev/null +++ b/logs/common/2024-03-07/warn-log.log @@ -0,0 +1,38 @@ +2024-03-07 14:49:24.266 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-07 14:49:24.281 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-07 14:49:26.013 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:49:26.013 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:49:26.014 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:49:26.014 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:49:26.014 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-07 14:50:15.329 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-07 14:50:36.149 [Thread-35] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-07 14:50:36.149 [Thread-6] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-07 14:50:36.150 [Thread-35] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-07 14:50:36.151 [Thread-6] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-07 14:50:45.587 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-07 14:50:45.587 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-07 14:50:45.588 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-07 14:50:57.602 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-07 14:50:57.620 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-07 14:50:58.977 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:50:58.978 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:50:58.978 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:50:58.980 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 14:50:58.980 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-07 14:51:14.247 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-07 15:05:29.930 [Thread-33] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-07 15:05:29.930 [Thread-6] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-07 15:05:29.930 [Thread-33] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-07 15:05:29.931 [Thread-6] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-07 15:05:37.877 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-07 15:05:37.877 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-07 15:05:37.878 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-07 15:05:49.398 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-07 15:05:49.416 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-07 15:05:50.758 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 15:05:50.758 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 15:05:50.758 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 15:05:50.758 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-07 15:05:50.759 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-07 15:05:57.956 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. diff --git a/logs/common/2024-03-11/debug-log.log b/logs/common/2024-03-11/debug-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-11/error-log.log b/logs/common/2024-03-11/error-log.log new file mode 100644 index 0000000..5a54443 --- /dev/null +++ b/logs/common/2024-03-11/error-log.log @@ -0,0 +1,54 @@ +2024-03-11 10:31:53.769 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 未登录 + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:46) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) diff --git a/logs/common/2024-03-11/info-log.log b/logs/common/2024-03-11/info-log.log new file mode 100644 index 0000000..b732aa5 --- /dev/null +++ b/logs/common/2024-03-11/info-log.log @@ -0,0 +1,244 @@ +2024-03-11 10:27:10.368 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-11 10:27:11.366 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-11 10:27:11.396 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-11 10:27:11.430 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-11 10:27:11.441 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-11 10:27:11.447 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-11 10:27:12.673 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-11 10:27:12.678 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-11 10:27:12.802 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 39 ms. Found 0 Redis repository interfaces. +2024-03-11 10:27:13.267 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-11 10:27:13.846 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 10:27:13.852 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 10:27:14.242 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-11 10:27:14.256 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-11 10:27:14.256 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-11 10:27:14.256 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-11 10:27:14.403 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-11 10:27:14.404 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2929 ms +2024-03-11 10:27:14.521 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-11 10:27:15.852 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-11 10:27:18.610 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 10:27:18.610 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-11 10:27:18.611 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 10:27:18.741 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-11 10:27:18.769 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-11 10:27:18.775 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-11 10:27:18.776 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-11 10:27:18.782 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-11 10:27:19.303 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 10.5 seconds (JVM running for 12.161) +2024-03-11 10:27:19.305 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-11 10:27:19.309 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:27:19.310 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-11 10:27:19.310 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:27:19.310 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-11 10:27:19.311 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:27:19.311 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-11 10:27:19.771 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-11 10:27:19.779 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-11 10:27:19.792 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710124039790,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":938036432267600} from /192.168.110.210 +2024-03-11 10:28:21.545 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-11 10:28:21.545 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-11 10:28:21.547 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-11 10:30:10.990 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-11 10:30:10.991 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-11 10:30:10.991 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-11 10:30:10.994 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-11 10:30:10.995 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-11 10:30:12.008 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710124212007,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":938208648606300} from /192.168.110.210 +2024-03-11 10:30:12.009 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-11 10:30:12.011 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-11 10:30:14.008 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-11 10:30:14.009 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-11 10:30:17.017 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-11 10:30:20.044 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-11 10:30:20.044 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-11 10:30:20.044 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-11 10:30:31.432 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-11 10:30:32.434 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-11 10:30:32.467 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-11 10:30:32.500 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-11 10:30:32.511 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-11 10:30:32.518 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-11 10:30:33.450 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-11 10:30:33.452 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-11 10:30:33.485 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. +2024-03-11 10:30:33.766 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-11 10:30:34.308 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 10:30:34.314 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 10:30:34.673 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-11 10:30:34.685 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-11 10:30:34.686 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-11 10:30:34.686 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-11 10:30:34.823 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-11 10:30:34.823 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2275 ms +2024-03-11 10:30:34.871 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-11 10:30:34.909 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-11 10:30:36.197 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-11 10:30:38.774 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 10:30:38.775 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-11 10:30:38.775 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 10:30:38.882 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-11 10:30:38.901 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-11 10:30:38.906 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-11 10:30:38.907 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-11 10:30:38.910 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-11 10:30:39.303 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 9.151 seconds (JVM running for 10.866) +2024-03-11 10:30:39.304 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-11 10:30:39.306 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:30:39.308 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-11 10:30:39.308 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:30:39.308 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-11 10:30:39.308 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:30:39.308 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-11 10:30:39.913 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 10:30:39.918 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 10:30:39.927 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710124239926,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":938236568251200} from /192.168.110.210 +2024-03-11 10:30:44.195 [http-nio-9002-exec-2] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-11 10:30:44.195 [http-nio-9002-exec-2] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-11 10:30:44.198 [http-nio-9002-exec-2] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 3 ms +2024-03-11 10:31:12.980 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-11 10:31:12.980 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-11 10:31:12.980 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-11 10:31:12.984 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-11 10:31:12.984 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-11 10:31:13.993 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710124273992,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":938270633371400} from /192.168.110.210 +2024-03-11 10:31:13.994 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 10:31:13.996 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-11 10:31:14.218 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-11 10:31:14.218 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-11 10:31:17.249 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-11 10:31:20.284 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-11 10:31:20.284 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-11 10:31:20.284 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-11 10:31:20.284 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-11 10:31:20.284 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-11 10:31:20.285 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-11 10:31:20.285 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-11 10:31:20.285 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-11 10:31:28.692 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-11 10:31:29.630 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-11 10:31:29.660 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-11 10:31:29.691 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-11 10:31:29.702 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-11 10:31:29.707 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-11 10:31:30.532 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-11 10:31:30.534 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-11 10:31:30.564 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. +2024-03-11 10:31:30.834 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-11 10:31:31.342 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 10:31:31.347 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 10:31:31.711 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-11 10:31:31.724 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-11 10:31:31.724 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-11 10:31:31.725 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-11 10:31:31.853 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-11 10:31:31.853 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2118 ms +2024-03-11 10:31:31.900 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-11 10:31:31.929 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-11 10:31:33.201 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-11 10:31:35.729 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 10:31:35.730 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-11 10:31:35.731 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 10:31:35.837 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-11 10:31:35.861 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-11 10:31:35.866 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-11 10:31:35.867 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-11 10:31:35.871 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-11 10:31:36.274 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.835 seconds (JVM running for 10.489) +2024-03-11 10:31:36.276 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-11 10:31:36.279 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:31:36.280 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-11 10:31:36.280 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:31:36.280 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-11 10:31:36.280 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 10:31:36.280 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-11 10:31:36.864 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 10:31:36.870 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 10:31:36.882 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710124296881,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":938293522128400} from /192.168.110.210 +2024-03-11 10:31:53.540 [http-nio-9002-exec-2] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-11 10:31:53.540 [http-nio-9002-exec-2] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-11 10:31:53.543 [http-nio-9002-exec-2] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 3 ms +2024-03-11 14:17:25.744 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-11 14:17:25.746 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-11 14:17:25.747 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-11 14:17:25.751 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-11 14:17:25.751 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-11 14:17:26.758 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710137846756,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":951843394522000} from /192.168.110.210 +2024-03-11 14:17:26.766 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 14:17:26.772 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-11 14:17:26.800 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-11 14:17:26.800 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-11 14:17:29.804 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-11 14:17:32.816 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-11 14:17:32.816 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-11 14:17:32.820 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-11 14:17:32.820 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-11 14:17:32.820 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-11 14:17:32.822 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-11 14:17:32.822 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-11 14:17:32.822 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-11 17:33:24.878 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-11 17:33:25.644 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-11 17:33:25.666 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-11 17:33:25.693 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-11 17:33:25.701 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-11 17:33:25.705 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-11 17:33:26.518 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-11 17:33:26.523 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-11 17:33:26.577 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 26 ms. Found 0 Redis repository interfaces. +2024-03-11 17:33:27.014 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-11 17:33:27.699 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 17:33:27.706 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-11 17:33:28.093 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-11 17:33:28.104 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-11 17:33:28.104 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-11 17:33:28.104 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-11 17:33:28.220 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-11 17:33:28.220 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2492 ms +2024-03-11 17:33:28.259 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-11 17:33:28.281 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-11 17:33:29.307 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-11 17:33:31.572 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 17:33:31.572 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-11 17:33:31.573 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-11 17:33:31.672 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-11 17:33:31.690 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-11 17:33:31.695 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-11 17:33:31.695 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-11 17:33:31.699 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-11 17:33:32.023 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.174 seconds (JVM running for 9.57) +2024-03-11 17:33:32.024 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-11 17:33:32.026 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 17:33:32.027 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-11 17:33:32.027 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 17:33:32.028 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-11 17:33:32.028 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-11 17:33:32.028 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-11 17:33:32.698 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 17:33:32.703 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 17:33:32.713 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710149612713,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":1894998036000} from /192.168.110.210 +2024-03-11 17:34:21.253 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-11 17:34:21.254 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-11 17:34:21.256 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-11 17:34:22.074 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-11 17:34:22.074 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-11 17:34:22.075 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-11 17:34:22.159 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-11 17:34:22.264 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-11 17:35:57.228 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-11 17:35:57.228 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-11 17:35:57.228 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-11 17:38:34.517 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-11 17:38:34.518 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-11 17:38:34.518 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-11 17:38:34.519 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-11 17:38:34.520 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-11 17:38:35.523 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710149915523,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":2197808635400} from /192.168.110.210 +2024-03-11 17:38:35.524 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-11 17:38:35.525 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] diff --git a/logs/common/2024-03-11/trace-log.log b/logs/common/2024-03-11/trace-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-11/warn-log.log b/logs/common/2024-03-11/warn-log.log new file mode 100644 index 0000000..e2bf8f8 --- /dev/null +++ b/logs/common/2024-03-11/warn-log.log @@ -0,0 +1,58 @@ +2024-03-11 10:27:11.423 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-11 10:27:11.441 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-11 10:27:13.155 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:27:13.156 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:27:13.159 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:27:13.159 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:27:13.159 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-11 10:27:18.074 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-11 10:30:10.662 [Thread-6] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-11 10:30:10.662 [Thread-34] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-11 10:30:10.663 [Thread-34] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-11 10:30:10.663 [Thread-6] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-11 10:30:20.045 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-11 10:30:20.046 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-11 10:30:32.494 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-11 10:30:32.510 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-11 10:30:33.683 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:30:33.683 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:30:33.683 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:30:33.684 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:30:33.684 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-11 10:30:38.274 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-11 10:31:12.685 [Thread-31] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-11 10:31:12.685 [Thread-31] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-11 10:31:12.685 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-11 10:31:12.687 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-11 10:31:20.285 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-11 10:31:20.285 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-11 10:31:20.285 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-11 10:31:29.686 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-11 10:31:29.701 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-11 10:31:30.745 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:31:30.746 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:31:30.746 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:31:30.746 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 10:31:30.746 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-11 10:31:35.202 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-11 14:17:25.086 [Thread-31] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-11 14:17:25.086 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-11 14:17:25.105 [Thread-31] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-11 14:17:25.117 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-11 14:17:32.821 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-11 14:17:32.821 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-11 14:17:32.823 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-11 17:33:25.686 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-11 17:33:25.700 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-11 17:33:26.894 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 17:33:26.894 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 17:33:26.894 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 17:33:26.894 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-11 17:33:26.895 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-11 17:33:31.027 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-11 17:35:57.248 [http-nio-9002-exec-3] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 94756 +2024-03-11 17:38:34.305 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-11 17:38:34.305 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-11 17:38:34.306 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-11 17:38:34.306 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end diff --git a/logs/common/2024-03-12/debug-log.log b/logs/common/2024-03-12/debug-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-12/error-log.log b/logs/common/2024-03-12/error-log.log new file mode 100644 index 0000000..3c844df --- /dev/null +++ b/logs/common/2024-03-12/error-log.log @@ -0,0 +1,1546 @@ +2024-03-12 09:14:41.934 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 未登录 + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:46) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:15:17.749 [http-nio-9002-exec-4] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:50) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:22:48.700 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:50) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:23:30.709 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:50) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:24:53.650 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:50) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:32:02.858 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:35:25.858 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:44:03.019 [http-nio-9002-exec-1] ERROR com.recovery.common.base.util.HspHostUtil - host > null, module > admin +2024-03-12 09:44:03.023 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - Exception全局异常:{} +java.lang.RuntimeException: 暂无查到数据库信息 + at com.recovery.common.base.util.HspHostUtil.switchDB(HspHostUtil.java:44) + at com.recovery.admin.boot.aspect.WebLogAspect.doBefore(WebLogAspect.java:75) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) + at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:617) + at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:44) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:57) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.recovery.admin.boot.controller.testController$$EnhancerBySpringCGLIB$$793580d7.cs() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + 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:1064) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:45:36.595 [http-nio-9002-exec-1] ERROR com.recovery.common.base.util.HspHostUtil - host > null, module > admin +2024-03-12 09:45:36.598 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - Exception全局异常:{} +java.lang.RuntimeException: 暂无查到数据库信息 + at com.recovery.common.base.util.HspHostUtil.switchDB(HspHostUtil.java:44) + at com.recovery.admin.boot.aspect.WebLogAspect.doBefore(WebLogAspect.java:75) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) + at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:617) + at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:44) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:57) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.recovery.admin.boot.controller.testController$$EnhancerBySpringCGLIB$$bdd0bbb6.cs() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + 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:1064) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 09:45:57.731 [http-nio-9002-exec-2] ERROR com.recovery.common.base.util.HspHostUtil - host > null, module > admin +2024-03-12 09:45:57.732 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - Exception全局异常:{} +java.lang.RuntimeException: 暂无查到数据库信息 + at com.recovery.common.base.util.HspHostUtil.switchDB(HspHostUtil.java:44) + at com.recovery.admin.boot.aspect.WebLogAspect.doBefore(WebLogAspect.java:75) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) + at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:617) + at org.springframework.aop.aspectj.AspectJMethodBeforeAdvice.before(AspectJMethodBeforeAdvice.java:44) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:57) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.recovery.admin.boot.controller.testController$$EnhancerBySpringCGLIB$$bdd0bbb6.cs() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + 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:1064) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 10:41:49.483 [http-nio-9002-exec-5] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:08:19.207 [http-nio-9002-exec-10] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:08:35.862 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:08:37.731 [http-nio-9002-exec-3] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:08:38.761 [http-nio-9002-exec-4] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:08:47.776 [http-nio-9002-exec-5] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:10:26.909 [http-nio-9002-exec-7] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:20:06.807 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:20:42.391 [http-nio-9002-exec-3] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:22:40.239 [http-nio-9002-exec-8] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:24:07.271 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 登录过期,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 14:27:06.672 [http-nio-9002-exec-2] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - Exception全局异常:{} +java.lang.NullPointerException: null + at com.recovery.admin.boot.controller.testController.cs(testController.java:38) + at com.recovery.admin.boot.controller.testController$$FastClassBySpringCGLIB$$790b51ef.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.recovery.admin.boot.controller.testController$$EnhancerBySpringCGLIB$$5148d5d7.cs() + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + 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:1064) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 16:23:40.388 [main] ERROR org.springframework.boot.SpringApplication - Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'handlerExceptionResolver' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception), public cn.dev33.satoken.util.SaResult com.recovery.admin.boot.exception.GlobalExceptionHandler.handlerException(java.lang.Exception)} + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) + at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1334) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1177) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:564) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:524) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:944) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:434) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:338) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1332) + at com.recovery.admin.boot.AdminApp.main(AdminApp.java:19) +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception), public cn.dev33.satoken.util.SaResult com.recovery.admin.boot.exception.GlobalExceptionHandler.handlerException(java.lang.Exception)} + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) + ... 19 common frames omitted +Caused by: java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception), public cn.dev33.satoken.util.SaResult com.recovery.admin.boot.exception.GlobalExceptionHandler.handlerException(java.lang.Exception)} + at org.springframework.web.method.annotation.ExceptionHandlerMethodResolver.addExceptionMapping(ExceptionHandlerMethodResolver.java:114) + at org.springframework.web.method.annotation.ExceptionHandlerMethodResolver.(ExceptionHandlerMethodResolver.java:78) + at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.initExceptionHandlerAdviceCache(ExceptionHandlerExceptionResolver.java:291) + at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.afterPropertiesSet(ExceptionHandlerExceptionResolver.java:268) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.addDefaultHandlerExceptionResolvers(WebMvcConfigurationSupport.java:1090) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.handlerExceptionResolver(WebMvcConfigurationSupport.java:1032) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) + ... 20 common frames omitted +2024-03-12 16:30:45.999 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 未登录 + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:48) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 16:31:14.551 [http-nio-9002-exec-3] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 未登录 + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:48) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 16:35:39.769 [http-nio-9002-exec-3] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 您已被踢下线,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:55) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-12 16:49:37.811 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 您已被踢下线,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:55) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) diff --git a/logs/common/2024-03-12/info-log.log b/logs/common/2024-03-12/info-log.log new file mode 100644 index 0000000..179e2cd --- /dev/null +++ b/logs/common/2024-03-12/info-log.log @@ -0,0 +1,1849 @@ +2024-03-12 09:12:25.593 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:12:26.376 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:12:26.402 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:12:26.426 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:12:26.435 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:12:26.440 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:12:27.314 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:12:27.316 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:12:27.340 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 09:12:27.562 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:12:28.142 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:12:28.148 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:12:28.579 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:12:28.590 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:12:28.590 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:12:28.590 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:12:28.707 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:12:28.707 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2244 ms +2024-03-12 09:12:28.750 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:12:28.773 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:12:29.925 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:12:32.937 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:12:32.938 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:12:32.939 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:12:33.072 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:12:33.092 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:12:33.098 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:12:33.099 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:12:33.103 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:12:33.498 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.877 seconds (JVM running for 9.938) +2024-03-12 09:12:33.500 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:12:33.503 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:12:33.504 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:12:33.504 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:12:33.504 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:12:33.504 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:12:33.504 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:12:34.103 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 09:12:34.119 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 09:12:34.184 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710205954145,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58237918576100} from /192.168.110.210 +2024-03-12 09:12:57.115 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:12:57.115 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:12:57.115 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:12:57.118 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:12:57.118 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:12:58.119 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710205978118,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":58261891525300} from /192.168.110.210 +2024-03-12 09:12:58.119 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 09:12:58.120 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:12:58.150 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:12:58.151 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:13:01.172 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:13:04.189 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:13:04.189 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:13:04.189 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:13:04.189 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:13:04.190 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:13:04.190 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:13:04.190 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:13:04.190 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:13:13.004 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:13:14.040 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:13:14.072 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:13:14.103 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:13:14.114 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:13:14.120 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:13:14.961 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:13:14.964 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:13:14.995 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. +2024-03-12 09:13:15.297 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:13:15.842 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:13:15.847 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:13:16.270 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:13:16.284 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:13:16.284 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:13:16.285 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:13:16.458 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:13:16.458 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2307 ms +2024-03-12 09:13:16.516 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:13:16.545 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:13:17.597 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:13:19.624 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:13:19.625 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:13:19.625 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:13:19.715 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:13:19.732 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:13:19.738 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:13:19.739 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:13:19.741 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:13:20.064 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.44 seconds (JVM running for 9.975) +2024-03-12 09:13:20.065 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:13:20.067 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:13:20.068 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:13:20.068 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:13:20.069 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:13:20.069 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:13:20.069 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:13:20.736 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:13:20.742 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:13:20.751 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206000750,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58284523667400} from /192.168.110.210 +2024-03-12 09:14:04.933 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:14:04.933 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:14:04.935 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-12 09:14:05.606 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 09:14:05.606 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:14:05.606 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:14:05.679 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:14:05.761 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 09:20:08.732 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:20:08.732 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:20:08.732 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:20:08.734 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:20:08.734 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:20:09.738 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206409737,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":58693510269000} from /192.168.110.210 +2024-03-12 09:20:09.738 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:20:09.739 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:20:10.275 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:20:10.275 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:20:11.009 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:20:14.012 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:20:14.012 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:20:14.012 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:20:14.012 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:20:14.012 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:20:14.013 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:20:14.013 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:20:14.013 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:20:22.106 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:20:22.896 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:20:22.925 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:20:22.954 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:20:22.963 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:20:22.969 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:20:23.722 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:20:23.724 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:20:23.752 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 Redis repository interfaces. +2024-03-12 09:20:23.999 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:20:24.414 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:20:24.419 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:20:24.682 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:20:24.691 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:20:24.691 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:20:24.691 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:20:24.796 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:20:24.796 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1799 ms +2024-03-12 09:20:24.834 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:20:24.854 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:20:25.845 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:20:27.854 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:20:27.855 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:20:27.855 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:20:27.935 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:20:27.949 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:20:27.954 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:20:27.955 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:20:27.957 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:20:28.257 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.339 seconds (JVM running for 8.716) +2024-03-12 09:20:28.258 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:20:28.260 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:20:28.261 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:20:28.261 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:20:28.261 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:20:28.261 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:20:28.261 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:20:28.953 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:20:28.958 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:20:28.967 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206428966,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58712739530900} from /192.168.110.210 +2024-03-12 09:22:05.600 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:22:05.601 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:22:05.601 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:22:05.603 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:22:05.603 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:22:06.619 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206526618,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":58810391560200} from /192.168.110.210 +2024-03-12 09:22:06.620 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:22:06.621 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:22:08.149 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:22:08.150 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:22:09.081 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:22:12.108 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:22:12.109 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:22:12.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:22:12.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:22:12.111 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:22:12.113 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:22:12.114 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:22:12.114 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:22:18.022 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:22:18.636 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:22:18.656 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:22:18.676 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:22:18.684 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:22:18.688 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:22:19.306 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:22:19.308 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:22:19.333 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 09:22:19.540 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:22:19.924 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:22:19.928 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:22:20.181 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:22:20.190 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:22:20.191 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:22:20.191 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:22:20.291 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:22:20.291 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1583 ms +2024-03-12 09:22:20.327 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:22:20.346 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:22:21.293 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:22:23.306 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:22:23.306 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:22:23.307 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:22:23.388 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:22:23.404 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:22:23.408 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:22:23.409 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:22:23.411 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:22:23.723 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.475 seconds (JVM running for 7.337) +2024-03-12 09:22:23.724 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:22:23.726 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:22:23.727 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:22:23.727 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:22:23.727 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:22:23.727 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:22:23.727 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:22:24.416 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206544414,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58828186457500} from /192.168.110.210 +2024-03-12 09:22:24.432 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:22:24.437 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:22:47.979 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:22:47.980 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:22:47.981 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 09:23:30.715 [com.alibaba.nacos.naming.beat.sender] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='DEFAULT_GROUP@@hoe-admin', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:23:30.717 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:23:30.717 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:23:31.732 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206611731,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58895505103500} from /192.168.110.210 +2024-03-12 09:23:31.732 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:23:31.733 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:23:49.333 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:23:49.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:23:49.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:23:49.335 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:23:49.335 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:23:50.351 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206630350,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":58914123709900} from /192.168.110.210 +2024-03-12 09:23:50.351 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 09:23:50.352 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:23:50.740 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:23:50.740 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:23:52.726 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:23:55.727 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:23:55.727 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:23:55.728 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:23:55.728 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:23:55.728 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:23:55.729 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:23:55.729 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:23:55.729 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:23:59.233 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:23:59.978 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:24:00.001 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:24:00.028 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:24:00.036 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:24:00.042 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:24:00.718 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:24:00.720 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:24:00.746 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 Redis repository interfaces. +2024-03-12 09:24:00.965 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:24:01.371 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:24:01.375 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:24:01.665 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:24:01.675 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:24:01.676 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:24:01.676 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:24:01.785 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:24:01.785 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1714 ms +2024-03-12 09:24:01.823 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:24:01.845 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:24:02.792 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:24:04.745 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:24:04.745 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:24:04.745 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:24:04.827 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:24:04.843 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:24:04.847 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:24:04.848 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:24:04.851 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:24:05.149 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.897 seconds (JVM running for 7.835) +2024-03-12 09:24:05.150 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:24:05.152 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:24:05.153 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:24:05.153 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:24:05.153 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:24:05.153 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:24:05.153 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:24:05.852 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:24:05.855 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206645854,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58929627230100} from /192.168.110.210 +2024-03-12 09:24:05.856 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:24:27.628 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:24:27.629 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:24:27.630 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 09:24:54.644 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710206694643,\"checksum\":\"5571bb779d58b497b919bb470f54b602\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":58978416904100} from /192.168.110.210 +2024-03-12 09:31:22.517 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:31:22.517 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:31:22.517 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:31:22.518 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:31:22.518 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:31:23.526 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207083526,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":59367299181700} from /192.168.110.210 +2024-03-12 09:31:23.527 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:31:23.528 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:31:23.984 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:31:23.984 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:31:25.819 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:31:28.824 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:31:28.824 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:31:28.825 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:31:28.825 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:31:28.825 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:31:28.826 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:31:28.826 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:31:28.826 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:31:34.566 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:31:35.335 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:31:35.360 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:31:35.385 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:31:35.393 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:31:35.398 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:31:36.074 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:31:36.076 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:31:36.101 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 09:31:36.314 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:31:36.713 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:31:36.717 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:31:36.988 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:31:36.998 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:31:36.999 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:31:36.999 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:31:37.108 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:31:37.108 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1686 ms +2024-03-12 09:31:37.146 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:31:37.167 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:31:38.165 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:31:40.671 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:31:40.671 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:31:40.671 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:31:40.762 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:31:40.780 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:31:40.784 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:31:40.785 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:31:40.787 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:31:41.111 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.486 seconds (JVM running for 8.365) +2024-03-12 09:31:41.112 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:31:41.114 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:31:41.115 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:31:41.115 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:31:41.115 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:31:41.115 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:31:41.115 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:31:41.777 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 09:31:41.781 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 09:31:41.794 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207101793,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":59385566621400} from /192.168.110.210 +2024-03-12 09:31:46.490 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:31:46.490 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:31:46.492 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-12 09:31:47.289 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - false +2024-03-12 09:34:36.966 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:34:36.967 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:34:36.967 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:34:36.969 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:34:36.969 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:34:37.971 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207277971,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":59561744433200} from /192.168.110.210 +2024-03-12 09:34:37.972 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 09:34:37.974 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:34:38.020 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:34:38.021 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:34:41.023 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:34:44.038 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:34:44.038 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:34:44.039 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:34:44.040 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:34:44.040 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:34:44.042 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:34:44.043 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:34:44.043 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:34:49.429 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:34:50.032 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:34:50.052 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:34:50.073 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:34:50.080 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:34:50.084 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:34:50.629 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:34:50.631 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:34:50.650 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. +2024-03-12 09:34:50.824 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:34:51.167 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:34:51.170 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:34:51.383 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:34:51.391 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:34:51.392 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:34:51.392 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:34:51.479 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:34:51.479 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1375 ms +2024-03-12 09:34:51.511 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:34:51.527 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:34:52.332 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:34:54.105 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:34:54.106 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:34:54.106 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:34:54.178 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:34:54.192 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:34:54.196 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:34:54.196 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:34:54.198 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:34:54.460 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 5.741 seconds (JVM running for 6.606) +2024-03-12 09:34:54.461 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:34:54.463 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:34:54.463 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:34:54.464 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:34:54.464 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:34:54.464 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:34:54.464 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:34:55.207 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207295201,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":59578974201900} from /192.168.110.210 +2024-03-12 09:34:55.228 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:34:55.233 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:35:08.685 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:35:08.685 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:35:08.686 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 09:35:09.349 [http-nio-9002-exec-1] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:null:satoken:login:token:3403824b-e0e6-422d-9b7e-db456c7f7585 +2024-03-12 09:35:09.351 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - null +2024-03-12 09:35:26.230 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207326229,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":59610002988100} from /192.168.110.210 +2024-03-12 09:42:41.436 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:42:41.437 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:42:41.437 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:42:41.438 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:42:41.438 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:42:42.452 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207762452,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":60046225317500} from /192.168.110.210 +2024-03-12 09:42:42.453 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:42:42.454 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:42:44.440 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:42:44.440 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:42:46.029 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:42:49.036 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:42:49.037 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:42:49.038 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:42:49.039 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:42:49.039 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:42:49.042 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:42:49.042 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:42:49.043 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:42:56.129 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:42:56.894 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:42:56.918 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:42:56.942 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:42:56.950 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:42:56.954 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:42:57.618 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:42:57.620 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:42:57.645 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 Redis repository interfaces. +2024-03-12 09:42:57.853 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:42:58.263 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:42:58.267 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:42:58.529 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:42:58.538 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:42:58.539 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:42:58.539 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:42:58.640 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:42:58.640 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1663 ms +2024-03-12 09:42:58.677 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:42:58.698 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:42:59.628 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:43:01.603 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:43:01.604 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:43:01.604 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:43:01.688 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:43:01.704 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:43:01.708 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:43:01.709 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:43:01.711 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:43:02.018 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.877 seconds (JVM running for 7.828) +2024-03-12 09:43:02.019 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:43:02.020 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:43:02.021 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:43:02.021 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:43:02.021 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:43:02.021 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:43:02.021 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:43:02.715 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:43:02.717 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207782716,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":60066490032900} from /192.168.110.210 +2024-03-12 09:43:02.722 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:43:34.163 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:43:34.163 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:43:34.164 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 09:43:34.842 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - cs3 +2024-03-12 09:44:03.008 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 09:44:03.009 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:44:03.009 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:null_admin +2024-03-12 09:44:03.017 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:null_admin +2024-03-12 09:44:03.049 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:44:03 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:44:03.997 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207843996,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":60127769326500} from /192.168.110.210 +2024-03-12 09:44:50.473 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:44:50.473 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:44:50.474 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:44:50.475 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:44:50.475 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:44:51.488 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207891488,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":60175261178600} from /192.168.110.210 +2024-03-12 09:44:51.488 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:44:51.489 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:44:53.026 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:44:53.027 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:44:55.027 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:44:58.034 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:44:58.035 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:44:58.036 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:44:58.036 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:44:58.036 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:44:58.039 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:44:58.040 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:44:58.040 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:45:03.616 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:45:04.228 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:45:04.248 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:45:04.269 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:45:04.276 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:45:04.280 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:45:04.811 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:45:04.813 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:45:04.834 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 09:45:05.003 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:45:05.349 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:45:05.352 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:45:05.564 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:45:05.572 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:45:05.572 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:45:05.573 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:45:05.657 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:45:05.657 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1358 ms +2024-03-12 09:45:05.690 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:45:05.707 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:45:06.513 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:45:08.258 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:45:08.259 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:45:08.259 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:45:08.331 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:45:08.345 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:45:08.349 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:45:08.350 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:45:08.352 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:45:08.646 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 5.813 seconds (JVM running for 6.728) +2024-03-12 09:45:08.647 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:45:08.649 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:45:08.650 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:45:08.650 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:45:08.650 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:45:08.650 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:45:08.650 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:45:09.348 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +2024-03-12 09:45:09.353 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +2024-03-12 09:45:09.367 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207909366,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":60193139831200} from /192.168.110.210 +2024-03-12 09:45:19.745 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:45:19.745 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:45:19.747 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-12 09:45:20.370 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - 获取cs3 +2024-03-12 09:45:36.584 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 09:45:36.584 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:45:36.584 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:null_admin +2024-03-12 09:45:36.594 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:null_admin +2024-03-12 09:45:36.626 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:45:36 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:45:37.213 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710207937213,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":60220985992000} from /192.168.110.210 +2024-03-12 09:45:46.855 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - 获取cs3 +2024-03-12 09:45:49.639 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 09:45:49.639 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:45:49.640 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:null_admin +2024-03-12 09:45:57.728 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:null_admin +2024-03-12 09:45:57.733 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:45:57 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:46:24.354 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - 获取cs3 +2024-03-12 09:46:24.355 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 09:46:24.355 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:46:24.355 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:46:26.389 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:46:26.460 [http-nio-9002-exec-3] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 09:46:26.609 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 09:46:26.609 [http-nio-9002-exec-3] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 09:46:26.616 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 09:46:29.508 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:46:29 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:46:29.508 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:46:29 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:46:38.995 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - 获取cs3 +2024-03-12 09:46:38.996 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 09:46:38.996 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:46:38.996 [http-nio-9002-exec-4] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:46:38.999 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 09:46:38.999 [http-nio-9002-exec-4] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 09:46:39.001 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 09:46:46.693 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:46:46 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:46:46.693 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:46:46 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:51:02.308 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:51:02.309 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:51:02.309 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:51:02.310 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:51:02.310 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:51:02.680 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:51:02.681 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:51:03.325 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710208263325,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":60547098040200} from /192.168.110.210 +2024-03-12 09:51:03.325 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +2024-03-12 09:51:03.326 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:51:05.684 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:51:08.707 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:51:08.708 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:51:08.709 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:51:08.709 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:51:08.709 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:51:08.712 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:51:08.713 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:51:08.713 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:51:14.730 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:51:15.333 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:51:15.353 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:51:15.374 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:51:15.380 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:51:15.385 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:51:15.904 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:51:15.906 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:51:15.929 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 09:51:16.109 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:51:16.451 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:51:16.455 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:51:16.665 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:51:16.674 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:51:16.674 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:51:16.674 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:51:16.761 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:51:16.761 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1357 ms +2024-03-12 09:51:16.792 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:51:16.807 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:51:17.634 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:51:19.611 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:51:19.611 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:51:19.611 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:51:19.693 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:51:19.709 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:51:19.713 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:51:19.714 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:51:19.716 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:51:20.022 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.027 seconds (JVM running for 6.923) +2024-03-12 09:51:20.023 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:51:20.025 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:51:20.026 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:51:20.026 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:51:20.026 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:51:20.027 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:51:20.027 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:51:20.706 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:51:20.709 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:51:20.725 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710208280724,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":60564497456900} from /192.168.110.210 +2024-03-12 09:53:21.504 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 09:53:21.504 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 09:53:21.505 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 09:53:22.184 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 09:53:22.184 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 09:53:22.185 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:53:25.715 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 09:53:25.794 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 09:53:25.956 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 09:53:25.956 [http-nio-9002-exec-1] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 09:53:25.965 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 09:53:26.034 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:53:26 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:53:26.034 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 09:53:26 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 09:55:27.233 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 09:55:27.233 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 09:55:27.233 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 09:55:27.235 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 09:55:27.235 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 09:55:28.236 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710208528236,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":60812009592400} from /192.168.110.210 +2024-03-12 09:55:28.237 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:55:28.237 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 09:55:30.239 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 09:55:30.239 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 09:55:30.892 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 09:55:33.902 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 09:55:33.902 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 09:55:33.902 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 09:55:33.902 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 09:55:33.902 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 09:55:33.903 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 09:55:33.903 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 09:55:33.903 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 09:55:36.889 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 09:55:37.500 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 09:55:37.520 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 09:55:37.541 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 09:55:37.547 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 09:55:37.551 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 09:55:38.068 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 09:55:38.070 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 09:55:38.091 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. +2024-03-12 09:55:38.261 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 09:55:38.605 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:55:38.609 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 09:55:38.816 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 09:55:38.825 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 09:55:38.825 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 09:55:38.825 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 09:55:38.911 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 09:55:38.911 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1341 ms +2024-03-12 09:55:38.944 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 09:55:38.962 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 09:55:40.239 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 09:55:43.507 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:55:43.508 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 09:55:43.509 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 09:55:43.668 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 09:55:43.697 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 09:55:43.705 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 09:55:43.706 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 09:55:43.710 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 09:55:44.434 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.312 seconds (JVM running for 9.219) +2024-03-12 09:55:44.436 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 09:55:44.441 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:55:44.443 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 09:55:44.443 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:55:44.443 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 09:55:44.443 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 09:55:44.444 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 09:55:44.695 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:55:44.702 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 09:55:44.721 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710208544720,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":60828494379400} from /192.168.110.210 +2024-03-12 10:04:42.476 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 10:04:42.476 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 10:04:42.478 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-12 10:04:43.162 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:04:43.162 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:04:43.163 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:04:43.253 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:04:43.324 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 10:08:54.596 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:08:54.597 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:08:54.597 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:12:04.981 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:12:04.981 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:12:04.981 [http-nio-9002-exec-5] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:18:36.677 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:18:36.677 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:18:36.677 [http-nio-9002-exec-7] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:22:19.605 [http-nio-9002-exec-9] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:22:19.605 [http-nio-9002-exec-9] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:22:19.606 [http-nio-9002-exec-9] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:29:22.142 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:29:22.142 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:29:22.142 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 10:30:24.985 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 10:30:24.985 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 10:30:24.985 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 11:25:35.039 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 11:25:35.039 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 11:25:35.039 [http-nio-9002-exec-7] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 11:25:51.959 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 11:25:51.959 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 11:25:51.959 [http-nio-9002-exec-8] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:08:30.890 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:08:30.891 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:08:30.891 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:08:30.899 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:08:30.899 [http-nio-9002-exec-1] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:08:30.907 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:08:30.942 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:08:30 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:08:30.942 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:08:30 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:10:30.411 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:10:30.411 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:10:30.411 [http-nio-9002-exec-8] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:19:42.016 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:19:42.016 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:19:42.016 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:22:09.234 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:22:09.235 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:22:09.235 [http-nio-9002-exec-6] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:22:13.480 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:22:13.480 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:22:13.480 [http-nio-9002-exec-7] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:22:13.482 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:22:13.482 [http-nio-9002-exec-7] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:22:13.483 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:22:13.489 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:22:13 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:22:13.489 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:22:13 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:23:07.695 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 14:23:07.695 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 14:23:07.695 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 14:23:07.696 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 14:23:07.696 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 14:23:08.705 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710224588704,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":76872477467600} from /192.168.110.210 +2024-03-12 14:23:08.706 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 14:23:08.707 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 14:23:10.263 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 14:23:10.263 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 14:23:13.265 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 14:23:16.267 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 14:23:16.267 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 14:23:24.803 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 14:23:25.553 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 14:23:25.576 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 14:23:25.597 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 14:23:25.605 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 14:23:25.610 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 14:23:26.410 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 14:23:26.412 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 14:23:26.442 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. +2024-03-12 14:23:26.701 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 14:23:27.118 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 14:23:27.122 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 14:23:27.379 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 14:23:27.388 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 14:23:27.389 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 14:23:27.389 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 14:23:27.495 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 14:23:27.495 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1864 ms +2024-03-12 14:23:27.532 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 14:23:27.552 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 14:23:28.490 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 14:23:30.478 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 14:23:30.478 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 14:23:30.479 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 14:23:30.559 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 14:23:30.574 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 14:23:30.579 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 14:23:30.579 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 14:23:30.582 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 14:23:30.896 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.109 seconds (JVM running for 8.562) +2024-03-12 14:23:30.897 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 14:23:30.900 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:23:30.900 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 14:23:30.900 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:23:30.901 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 14:23:30.901 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:23:30.901 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 14:23:31.574 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 14:23:31.578 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 14:23:31.590 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710224611590,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":76895363551500} from /192.168.110.210 +2024-03-12 14:24:04.687 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 14:24:04.687 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 14:24:04.689 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-12 14:24:11.600 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:24:11.600 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:24:11.601 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:24:11.661 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:24:11.717 [http-nio-9002-exec-2] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 14:24:16.053 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:24:16.053 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:24:16.053 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:24:16.058 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:24:16.058 [http-nio-9002-exec-3] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:24:16.067 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:24:16.072 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:24:16 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:24:16.072 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:24:16 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:24:19.038 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:24:19.038 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:24:19.038 [http-nio-9002-exec-4] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:24:19.039 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:24:19.040 [http-nio-9002-exec-4] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:24:19.040 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:24:19.042 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:24:19 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:24:19.042 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:24:19 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:24:20.172 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:24:20.172 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:24:20.172 [http-nio-9002-exec-5] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:24:20.174 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:24:20.174 [http-nio-9002-exec-5] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:24:20.175 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:24:20.177 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:24:20 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:24:20.177 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 14:24:20 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 14:26:32.683 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 14:26:32.684 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 14:26:32.684 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 14:26:32.685 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 14:26:32.685 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 14:26:33.696 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710224793696,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":77077469822600} from /192.168.110.210 +2024-03-12 14:26:33.697 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 14:26:33.698 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 14:26:35.688 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 14:26:35.688 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 14:26:38.693 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 14:26:41.694 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 14:26:41.694 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 14:26:41.694 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 14:26:41.694 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 14:26:41.694 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 14:26:41.695 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 14:26:41.695 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 14:26:41.695 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 14:26:48.300 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 14:26:48.935 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 14:26:48.955 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 14:26:48.974 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 14:26:48.981 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 14:26:48.985 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 14:26:49.509 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 14:26:49.511 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 14:26:49.532 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 14:26:49.704 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 14:26:50.080 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 14:26:50.084 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 14:26:50.330 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 14:26:50.339 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 14:26:50.339 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 14:26:50.339 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 14:26:50.439 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 14:26:50.439 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1435 ms +2024-03-12 14:26:50.474 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 14:26:50.494 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 14:26:51.428 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 14:26:53.422 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 14:26:53.422 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 14:26:53.423 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 14:26:53.503 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 14:26:53.519 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 14:26:53.523 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 14:26:53.524 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 14:26:53.526 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 14:26:53.827 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.282 seconds (JVM running for 7.189) +2024-03-12 14:26:53.829 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 14:26:53.831 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:26:53.832 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 14:26:53.832 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:26:53.832 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 14:26:53.832 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:26:53.832 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 14:26:54.524 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 14:26:54.528 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 14:26:54.529 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710224814529,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":77098302883900} from /192.168.110.210 +2024-03-12 14:26:57.351 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 14:26:57.351 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 14:26:57.352 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 14:26:57.984 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:26:57.984 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:26:57.985 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:26:58.066 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:26:58.143 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 14:26:58.304 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:26:58.304 [http-nio-9002-exec-1] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:26:58.313 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:27:06.661 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:27:06.661 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:27:06.661 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:27:06.664 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:27:06.665 [http-nio-9002-exec-2] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:27:06.666 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:27:41.730 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 14:27:41.730 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 14:27:41.730 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 14:27:41.731 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 14:27:41.731 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 14:27:42.741 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710224862741,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":77146514752500} from /192.168.110.210 +2024-03-12 14:27:42.742 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 14:27:42.742 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 14:27:43.559 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 14:27:43.559 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 14:27:44.565 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 14:27:47.569 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 14:27:47.569 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 14:27:47.569 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 14:27:52.924 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 14:27:53.616 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 14:27:53.639 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 14:27:53.662 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 14:27:53.669 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 14:27:53.673 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 14:27:54.304 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 14:27:54.306 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 14:27:54.331 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 14:27:54.534 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 14:27:54.947 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 14:27:54.952 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 14:27:55.210 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 14:27:55.220 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 14:27:55.220 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 14:27:55.220 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 14:27:55.321 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 14:27:55.321 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1625 ms +2024-03-12 14:27:55.357 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 14:27:55.377 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 14:27:56.326 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 14:27:58.366 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 14:27:58.366 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 14:27:58.367 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 14:27:58.452 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 14:27:58.468 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 14:27:58.472 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 14:27:58.473 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 14:27:58.475 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 14:27:58.790 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.618 seconds (JVM running for 7.56) +2024-03-12 14:27:58.791 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 14:27:58.793 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:27:58.794 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 14:27:58.794 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:27:58.794 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 14:27:58.794 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 14:27:58.794 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 14:27:59.476 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 14:27:59.480 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710224879479,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":77163252466300} from /192.168.110.210 +2024-03-12 14:27:59.481 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 14:28:04.232 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 14:28:04.232 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 14:28:04.233 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 14:28:04.858 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:28:04.858 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:28:04.859 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:28:04.930 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:28:04.993 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 14:28:05.126 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:28:05.126 [http-nio-9002-exec-1] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:28:05.133 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 14:53:24.587 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:53:24.588 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:53:24.588 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:54:22.986 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:54:22.986 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:54:22.986 [http-nio-9002-exec-5] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:54:56.083 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 14:54:56.083 [http-nio-9002-exec-7] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:54:56.083 [http-nio-9002-exec-7] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:55:33.112 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 14:55:33.112 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 14:55:33.112 [http-nio-9002-exec-8] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 14:55:33.114 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 14:55:33.114 [http-nio-9002-exec-8] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 14:55:33.114 [http-nio-9002-exec-8] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 15:19:15.307 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:19:15.307 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:19:15.308 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:19:15.312 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 15:19:15.312 [http-nio-9002-exec-1] INFO com.recovery.common.base.util.RedisUtil - 获取reids数据:key:hoe-cs1:123 +2024-03-12 15:19:15.313 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试2的redis1 +2024-03-12 15:20:01.653 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 15:20:01.653 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:20:01.653 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:29:07.796 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 15:29:07.796 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 15:29:07.796 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 15:29:07.797 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 15:29:07.798 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 15:29:08.811 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710228548811,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":80832584588000} from /192.168.110.210 +2024-03-12 15:29:08.812 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 15:29:08.813 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 15:29:10.799 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 15:29:10.799 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 15:29:11.091 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 15:29:14.111 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 15:29:14.111 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 15:29:14.111 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 15:29:23.874 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 15:29:24.833 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 15:29:24.866 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 15:29:24.892 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 15:29:24.902 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 15:29:24.907 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 15:29:25.710 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 15:29:25.713 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 15:29:25.742 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 Redis repository interfaces. +2024-03-12 15:29:26.002 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 15:29:26.582 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 15:29:26.587 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 15:29:26.894 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 15:29:26.903 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 15:29:26.904 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 15:29:26.904 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 15:29:27.012 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 15:29:27.012 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2076 ms +2024-03-12 15:29:27.051 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 15:29:27.072 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 15:29:28.025 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 15:29:29.988 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 15:29:29.989 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 15:29:29.989 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 15:29:30.071 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 15:29:30.087 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 15:29:30.091 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 15:29:30.092 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 15:29:30.094 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 15:29:30.396 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.749 seconds (JVM running for 9.212) +2024-03-12 15:29:30.397 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 15:29:30.399 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:29:30.400 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 15:29:30.401 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:29:30.401 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 15:29:30.401 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:29:30.401 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 15:29:31.094 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +2024-03-12 15:29:31.098 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +2024-03-12 15:29:31.099 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710228571099,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":80854872312200} from /192.168.110.210 +2024-03-12 15:29:46.011 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 15:29:46.011 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 15:29:46.013 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 15:29:46.698 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:29:46.698 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:29:46.699 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:29:46.777 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:29:46.850 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 15:29:46.988 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 15:29:51.571 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:29:51.571 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:29:51.571 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:29:51.573 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 15:36:53.262 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 15:36:53.262 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 15:36:53.262 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 15:36:53.263 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 15:36:53.264 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 15:36:54.265 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710229014265,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":81298038153800} from /192.168.110.210 +2024-03-12 15:36:54.265 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +2024-03-12 15:36:54.266 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 15:36:55.475 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 15:36:55.476 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 15:36:58.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 15:37:01.482 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 15:37:01.482 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 15:37:06.733 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 15:37:07.348 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 15:37:07.368 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 15:37:07.388 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 15:37:07.395 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 15:37:07.399 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 15:37:07.950 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 15:37:07.952 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 15:37:07.974 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 15:37:08.158 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 15:37:08.483 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 15:37:08.487 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 15:37:08.699 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 15:37:08.707 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 15:37:08.707 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 15:37:08.708 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 15:37:08.808 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 15:37:08.808 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1390 ms +2024-03-12 15:37:08.838 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 15:37:08.855 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 15:37:09.655 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 15:37:11.402 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 15:37:11.402 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 15:37:11.402 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 15:37:11.487 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 15:37:11.502 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 15:37:11.507 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 15:37:11.508 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 15:37:11.510 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 15:37:11.834 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 5.827 seconds (JVM running for 6.703) +2024-03-12 15:37:11.835 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 15:37:11.838 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:37:11.838 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 15:37:11.839 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:37:11.839 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 15:37:11.839 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:37:11.839 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 15:37:12.499 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 15:37:12.503 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 15:37:12.516 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710229032516,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":81316289588600} from /192.168.110.210 +2024-03-12 15:37:36.063 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 15:37:36.064 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 15:37:36.065 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 15:37:36.769 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:37:36.769 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:37:36.769 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:37:36.844 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:37:36.915 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 15:37:37.062 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 15:37:42.145 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:37:42.145 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:37:42.146 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:37:42.147 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 15:37:58.623 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 15:37:58.624 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 15:37:58.624 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 15:37:58.625 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 15:37:58.625 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 15:37:59.634 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710229079634,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":81363407536300} from /192.168.110.210 +2024-03-12 15:37:59.635 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 15:37:59.636 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 15:38:01.609 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 15:38:01.610 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 15:38:02.547 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 15:38:05.549 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 15:38:05.549 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 15:38:10.795 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 15:38:11.411 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 15:38:11.431 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 15:38:11.451 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 15:38:11.457 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 15:38:11.461 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 15:38:12.016 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 15:38:12.019 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 15:38:12.043 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 15:38:12.244 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 15:38:12.642 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 15:38:12.647 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 15:38:12.901 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 15:38:12.910 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 15:38:12.910 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 15:38:12.910 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 15:38:13.010 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 15:38:13.010 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1530 ms +2024-03-12 15:38:13.046 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 15:38:13.066 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 15:38:13.994 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 15:38:15.982 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 15:38:15.982 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 15:38:15.982 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 15:38:16.065 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 15:38:16.080 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 15:38:16.084 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 15:38:16.085 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 15:38:16.091 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 15:38:16.394 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.356 seconds (JVM running for 7.257) +2024-03-12 15:38:16.395 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 15:38:16.397 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:38:16.398 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 15:38:16.398 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:38:16.398 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 15:38:16.398 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 15:38:16.399 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 15:38:17.091 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 15:38:17.095 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 15:38:17.096 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710229097095,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":81380868483000} from /192.168.110.210 +2024-03-12 15:39:01.122 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 15:39:01.123 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 15:39:01.124 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 15:39:01.788 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:39:01.788 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:39:01.789 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:39:01.852 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:39:01.921 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 15:39:02.070 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 15:39:08.433 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 15:39:08.433 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 15:39:08.433 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 15:39:08.435 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:23:21.288 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:23:21.288 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:23:21.288 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:23:21.290 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:23:21.290 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:23:22.291 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710231802291,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":84086064495500} from /192.168.110.210 +2024-03-12 16:23:22.291 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:23:22.293 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:23:23.298 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:23:23.299 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:23:26.300 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:23:29.314 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:23:29.314 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:23:29.314 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:23:36.407 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:23:37.346 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:23:37.383 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:23:37.410 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:23:37.419 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:23:37.424 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:23:38.211 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:23:38.214 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:23:38.246 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. +2024-03-12 16:23:38.497 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:23:38.894 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:23:38.898 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:23:39.154 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:23:39.163 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:23:39.163 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:23:39.163 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:23:39.263 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:23:39.263 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1812 ms +2024-03-12 16:23:39.299 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:23:39.318 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:23:40.248 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:23:40.344 [main] INFO org.apache.catalina.core.StandardService - Stopping service [Tomcat] +2024-03-12 16:23:40.361 [main] INFO org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2024-03-12 16:24:35.168 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:24:35.803 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:24:35.825 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:24:35.846 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:24:35.853 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:24:35.856 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:24:36.415 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:24:36.417 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:24:36.440 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 16:24:36.668 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:24:37.035 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:24:37.039 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:24:37.254 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:24:37.263 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:24:37.263 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:24:37.264 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:24:37.355 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:24:37.355 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1480 ms +2024-03-12 16:24:37.394 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:24:37.415 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:24:38.314 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:24:40.412 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:24:40.413 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:24:40.414 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:24:40.544 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:24:40.562 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:24:40.567 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:24:40.567 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:24:40.570 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:24:40.975 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.62 seconds (JVM running for 7.58) +2024-03-12 16:24:40.976 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:24:40.979 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:24:40.980 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:24:40.980 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:24:40.980 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:24:40.980 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:24:40.980 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:24:41.567 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:24:41.571 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:24:41.582 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710231881582,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":84165355528900} from /192.168.110.210 +2024-03-12 16:28:54.352 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:28:54.352 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:28:54.352 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:28:54.353 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:28:54.353 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:28:55.368 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232135368,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":84419141153800} from /192.168.110.210 +2024-03-12 16:28:55.369 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:28:55.370 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:28:56.087 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:28:56.087 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:28:59.110 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:29:02.143 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:29:02.144 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:29:02.144 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:29:02.144 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:29:02.144 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:29:02.145 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:29:02.145 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:29:02.145 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:29:07.831 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:29:08.450 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:29:08.473 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:29:08.496 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:29:08.503 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:29:08.507 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:29:09.110 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:29:09.113 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:29:09.136 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 16:29:09.339 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:29:09.720 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:29:09.724 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:29:09.971 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:29:09.980 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:29:09.981 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:29:09.981 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:29:10.082 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:29:10.082 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1554 ms +2024-03-12 16:29:10.118 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:29:10.137 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:29:11.046 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:29:12.975 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:29:12.975 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:29:12.976 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:29:13.054 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:29:13.068 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:29:13.072 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:29:13.073 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:29:13.075 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:29:13.368 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.292 seconds (JVM running for 7.174) +2024-03-12 16:29:13.369 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:29:13.372 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:29:13.372 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:29:13.373 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:29:13.373 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:29:13.373 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:29:13.373 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:29:14.080 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 16:29:14.083 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232154083,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":84437856620100} from /192.168.110.210 +2024-03-12 16:29:14.084 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 16:29:45.705 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 16:29:45.705 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 16:29:45.706 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 16:29:46.393 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:29:46.393 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:29:46.394 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:29:46.467 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:29:46.542 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 16:29:46.673 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:29:49.861 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:29:49.861 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:29:49.862 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:29:49.863 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:30:14.752 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:30:14.752 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:30:14.752 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:30:14.753 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:30:14.754 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:30:15.768 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232215767,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":84499540867900} from /192.168.110.210 +2024-03-12 16:30:15.768 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-12 16:30:15.769 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:30:17.757 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:30:17.758 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:30:20.760 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:30:23.762 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:30:23.762 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:30:23.762 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:30:28.624 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:30:29.221 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:30:29.241 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:30:29.261 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:30:29.267 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:30:29.271 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:30:29.793 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:30:29.795 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:30:29.815 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 16:30:30.018 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:30:30.353 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:30:30.356 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:30:30.562 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:30:30.571 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:30:30.571 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:30:30.571 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:30:30.656 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:30:30.656 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1366 ms +2024-03-12 16:30:30.686 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:30:30.703 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:30:31.501 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:30:33.320 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:30:33.320 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:30:33.321 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:30:33.402 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:30:33.417 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:30:33.421 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:30:33.422 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:30:33.423 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:30:33.716 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 5.824 seconds (JVM running for 6.678) +2024-03-12 16:30:33.717 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:30:33.719 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:30:33.720 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:30:33.720 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:30:33.720 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:30:33.720 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:30:33.720 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:30:34.422 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:30:34.425 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:30:34.426 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232234426,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":84518199736400} from /192.168.110.210 +2024-03-12 16:30:45.324 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 16:30:45.324 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 16:30:45.325 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 16:31:03.495 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 16:31:03.495 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:31:03.496 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:31:03.555 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:31:03.610 [http-nio-9002-exec-2] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 16:31:50.804 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:31:50.804 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:31:50.805 [http-nio-9002-exec-4] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:31:50.810 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:31:50.813 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:31:50 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:31:50.813 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:31:50 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:32:04.064 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:32:04.065 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:32:04.065 [http-nio-9002-exec-5] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:32:04.072 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:32:04.075 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:32:04 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:32:04.075 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:32:04 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:33:09.122 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:33:09.122 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:33:09.122 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:33:09.124 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:33:09.124 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:33:09.125 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:33:09.125 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:33:10.134 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232390133,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":84673906599500} from /192.168.110.210 +2024-03-12 16:33:10.134 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:33:10.135 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:33:12.130 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:33:15.135 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:33:15.135 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:33:15.135 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:33:15.135 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:33:15.135 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:33:15.136 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:33:15.136 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:33:15.136 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:33:20.618 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:33:22.091 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:33:22.135 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:33:22.181 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:33:22.194 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:33:22.203 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:33:23.517 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:33:23.520 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:33:23.560 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 21 ms. Found 0 Redis repository interfaces. +2024-03-12 16:33:23.849 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:33:24.385 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:33:24.391 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:33:24.762 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:33:24.773 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:33:24.774 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:33:24.774 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:33:24.895 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:33:24.895 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2643 ms +2024-03-12 16:33:24.939 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:33:24.962 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:33:26.144 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:33:28.774 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:33:28.774 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:33:28.774 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:33:28.877 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:33:28.898 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:33:28.902 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:33:28.903 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:33:28.906 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:33:29.311 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 9.753 seconds (JVM running for 10.678) +2024-03-12 16:33:29.312 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:33:29.314 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:33:29.315 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:33:29.315 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:33:29.316 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:33:29.316 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:33:29.316 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:33:29.915 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:33:29.919 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232409918,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":84693690687200} from /192.168.110.210 +2024-03-12 16:33:29.921 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:35:09.727 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 16:35:09.727 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 16:35:09.729 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-12 16:35:13.784 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:35:13.784 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:35:13.785 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:35:13.856 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:35:13.930 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 16:35:14.076 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:35:14.104 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:35:14 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:35:14.104 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:35:14 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:35:36.100 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs1 +2024-03-12 16:35:36.100 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:35:36.100 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:35:36.156 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:35:36 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-12 16:35:36.156 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:35:36 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-12 16:36:18.010 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:36:18.011 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:36:18.011 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:36:18.012 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:36:18.012 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:36:19.020 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232579020,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":84862793846500} from /192.168.110.210 +2024-03-12 16:36:19.022 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:36:19.023 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:36:19.159 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:36:19.159 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:36:20.061 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:36:23.063 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:36:23.063 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:36:23.063 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:36:23.063 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:36:23.063 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:36:23.064 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:36:23.064 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:36:23.064 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:36:28.656 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:36:29.497 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:36:29.526 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:36:29.554 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:36:29.562 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:36:29.568 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:36:30.256 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:36:30.258 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:36:30.286 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 Redis repository interfaces. +2024-03-12 16:36:30.522 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:36:30.941 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:36:30.945 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:36:31.223 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:36:31.233 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:36:31.234 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:36:31.234 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:36:31.344 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:36:31.344 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1750 ms +2024-03-12 16:36:31.386 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:36:31.408 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:36:32.457 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:36:34.570 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:36:34.570 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:36:34.570 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:36:34.660 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:36:34.677 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:36:34.682 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:36:34.683 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:36:34.685 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:36:35.001 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.324 seconds (JVM running for 8.3) +2024-03-12 16:36:35.002 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:36:35.005 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:36:35.006 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:36:35.006 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:36:35.006 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:36:35.006 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:36:35.006 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:36:35.683 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:36:35.685 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232595685,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":84879458588200} from /192.168.110.210 +2024-03-12 16:36:35.687 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:38:16.658 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:38:16.658 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:38:16.658 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:38:16.659 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:38:16.659 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:38:17.662 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232697662,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":84981435474000} from /192.168.110.210 +2024-03-12 16:38:17.663 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:38:17.663 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:38:19.683 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:38:19.684 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:38:22.716 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:38:25.746 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:38:25.746 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:38:25.747 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:38:25.747 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:38:25.747 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:38:25.747 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:38:25.748 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:38:25.748 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:38:30.763 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:38:31.398 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:38:31.421 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:38:31.443 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:38:31.450 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:38:31.455 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:38:32.052 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:38:32.054 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:38:32.079 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-12 16:38:32.282 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:38:32.673 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:38:32.677 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:38:32.930 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:38:32.939 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:38:32.939 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:38:32.939 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:38:33.039 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:38:33.039 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1562 ms +2024-03-12 16:38:33.075 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:38:33.095 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:38:34.031 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:38:35.980 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:38:35.981 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:38:35.981 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:38:36.062 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:38:36.077 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:38:36.081 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:38:36.082 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:38:36.084 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:38:36.385 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.356 seconds (JVM running for 7.243) +2024-03-12 16:38:36.386 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:38:36.388 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:38:36.389 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:38:36.389 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:38:36.389 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:38:36.389 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:38:36.389 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:38:37.085 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:38:37.089 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232717088,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":85000861620000} from /192.168.110.210 +2024-03-12 16:38:37.089 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:39:15.139 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 16:39:15.139 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 16:39:15.140 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-03-12 16:39:15.839 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-12 16:39:15.839 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:39:15.840 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:39:15.919 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:39:15.999 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 16:39:20.000 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:39:20.000 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:39:20.000 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:39:20.004 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:39:20.007 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:39:20 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:39:20.007 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:39:20 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:39:22.866 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs1 +2024-03-12 16:39:22.866 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:39:22.866 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:39:22.898 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:39:22 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-12 16:39:22.899 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:39:22 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-12 16:39:25.749 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:39:25.749 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:39:25.750 [http-nio-9002-exec-4] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:39:25.751 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:39:25.755 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:39:25 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:39:25.756 [http-nio-9002-exec-4] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:39:25 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:40:00.647 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:40:00.647 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:40:00.647 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:40:00.648 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:40:00.648 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:40:01.190 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:40:01.190 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:40:01.649 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232801649,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":85085422943000} from /192.168.110.210 +2024-03-12 16:40:01.650 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-12 16:40:01.651 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:40:04.192 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:40:07.195 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:40:07.195 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:40:07.195 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:40:07.195 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:40:07.195 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:40:07.196 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:40:07.196 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:40:07.196 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:40:12.685 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:40:13.337 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:40:13.360 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:40:13.383 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:40:13.390 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:40:13.395 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:40:14.043 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:40:14.046 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:40:14.072 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 Redis repository interfaces. +2024-03-12 16:40:14.280 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:40:14.678 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:40:14.682 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:40:14.942 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:40:14.951 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:40:14.951 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:40:14.952 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:40:15.052 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:40:15.052 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1636 ms +2024-03-12 16:40:15.087 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:40:15.107 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:40:16.046 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:40:18.025 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:40:18.025 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:40:18.026 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:40:18.106 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:40:18.122 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:40:18.126 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:40:18.127 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:40:18.129 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:40:18.426 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 6.519 seconds (JVM running for 7.416) +2024-03-12 16:40:18.427 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:40:18.430 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:40:18.430 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:40:18.431 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:40:18.431 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:40:18.431 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:40:18.431 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:40:19.122 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:40:19.125 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:40:19.144 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710232819143,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":85102916948500} from /192.168.110.210 +2024-03-12 16:40:29.148 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 16:40:29.149 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 16:40:29.152 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 3 ms +2024-03-12 16:40:30.177 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:40:30.177 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:40:30.177 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:40:30.260 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:40:30.329 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-12 16:40:30.490 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:40:30.523 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:40:30 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:40:30.523 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:40:30 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:40:34.799 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs1 +2024-03-12 16:40:34.799 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:40:34.799 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:40:34.809 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:40:34 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-12 16:40:40.303 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-12 16:40:40.303 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-12 16:40:40.303 [http-nio-9002-exec-3] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-12 16:40:40.305 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-12 16:40:40.307 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:40:40 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:40:40.307 [http-nio-9002-exec-3] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Tue Mar 12 16:40:40 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-12 16:45:19.972 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-12 16:45:19.972 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-12 16:45:19.973 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-12 16:45:19.973 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-12 16:45:19.974 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-12 16:45:20.975 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710233120974,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":85404747805300} from /192.168.110.210 +2024-03-12 16:45:20.975 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:45:20.976 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-12 16:45:22.991 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-12 16:45:22.992 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-12 16:45:26.002 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-12 16:45:29.003 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-12 16:45:29.003 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-12 16:45:29.004 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-12 16:45:29.004 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-12 16:45:29.004 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-12 16:45:29.005 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-12 16:45:29.005 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-12 16:45:29.005 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-12 16:45:34.437 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-12 16:45:35.038 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-12 16:45:35.057 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-12 16:45:35.078 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-12 16:45:35.084 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-12 16:45:35.088 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-12 16:45:35.628 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-12 16:45:35.630 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-12 16:45:35.651 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-12 16:45:35.874 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-12 16:45:36.207 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:45:36.210 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-12 16:45:36.421 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-12 16:45:36.429 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-12 16:45:36.430 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-12 16:45:36.430 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-12 16:45:36.515 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-12 16:45:36.515 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1408 ms +2024-03-12 16:45:36.546 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-12 16:45:36.563 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-12 16:45:37.370 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-12 16:45:39.248 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:45:39.249 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-12 16:45:39.249 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-12 16:45:39.328 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-12 16:45:39.344 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-12 16:45:39.348 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-12 16:45:39.349 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-12 16:45:39.351 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-12 16:45:39.643 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 5.941 seconds (JVM running for 6.846) +2024-03-12 16:45:39.644 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-12 16:45:39.647 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:45:39.648 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-12 16:45:39.648 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:45:39.648 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-12 16:45:39.648 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-12 16:45:39.648 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-12 16:45:40.355 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:45:40.357 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710233140356,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":85424129675700} from /192.168.110.210 +2024-03-12 16:45:40.361 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-12 16:49:37.006 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-12 16:49:37.007 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-12 16:49:37.008 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 1 ms diff --git a/logs/common/2024-03-12/trace-log.log b/logs/common/2024-03-12/trace-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-12/warn-log.log b/logs/common/2024-03-12/warn-log.log new file mode 100644 index 0000000..2f3e1c1 --- /dev/null +++ b/logs/common/2024-03-12/warn-log.log @@ -0,0 +1,389 @@ +2024-03-12 09:12:26.422 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:12:26.434 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:12:27.473 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:12:27.473 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:12:27.476 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:12:27.476 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:12:27.476 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:12:31.841 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:12:56.919 [Thread-30] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:12:56.919 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:12:56.919 [Thread-30] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:12:56.920 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:13:04.190 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:13:04.190 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:13:04.191 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:13:14.099 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:13:14.113 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:13:15.189 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:13:15.189 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:13:15.190 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:13:15.190 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:13:15.190 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:13:19.195 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:20:08.520 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:20:08.520 [Thread-30] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:20:08.521 [Thread-30] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:20:08.521 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:20:14.013 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:20:14.013 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:20:14.013 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:20:22.948 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:20:22.962 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:20:23.903 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:20:23.903 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:20:23.903 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:20:23.903 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:20:23.903 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:20:27.446 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:22:05.403 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:22:05.403 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:22:05.403 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:22:05.404 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:22:12.112 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:22:12.112 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:22:12.115 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:22:18.673 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:22:18.684 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:22:19.462 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:22:19.462 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:22:19.462 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:22:19.462 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:22:19.462 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:22:22.903 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:23:49.114 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:23:49.114 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:23:49.115 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:23:49.115 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:23:55.728 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:23:55.728 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:23:55.729 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:24:00.024 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:24:00.035 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:24:00.886 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:24:00.886 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:24:00.886 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:24:00.886 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:24:00.886 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:24:04.335 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:31:22.296 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:31:22.296 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:31:22.297 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:31:22.297 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:31:28.825 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:31:28.826 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:31:28.826 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:31:35.381 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:31:35.392 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:31:36.233 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:31:36.233 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:31:36.233 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:31:36.233 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:31:36.233 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:31:40.144 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:34:36.777 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:34:36.777 [Thread-27] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:34:36.778 [Thread-27] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:34:36.778 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:34:44.041 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:34:44.042 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:34:44.044 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:34:50.070 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:34:50.079 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:34:50.763 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:34:50.764 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:34:50.764 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:34:50.764 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:34:50.764 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:34:53.749 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:42:41.224 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:42:41.224 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:42:41.225 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:42:41.226 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:42:49.040 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:42:49.041 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:42:49.044 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:42:56.938 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:42:56.949 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:42:57.778 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:42:57.778 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:42:57.778 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:42:57.778 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:42:57.778 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:43:01.189 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:44:50.262 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:44:50.262 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:44:50.262 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:44:50.263 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:44:58.038 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:44:58.038 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:44:58.041 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:45:04.266 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:45:04.275 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:45:04.942 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:45:04.943 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:45:04.943 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:45:04.943 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:45:04.943 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:45:07.907 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:51:02.133 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:51:02.133 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:51:02.134 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:51:02.134 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:51:08.711 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:51:08.711 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:51:08.714 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:51:15.370 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:51:15.380 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:51:16.048 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:51:16.048 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:51:16.048 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:51:16.048 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:51:16.048 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:51:19.201 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 09:55:27.043 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 09:55:27.043 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 09:55:27.044 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 09:55:27.044 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 09:55:33.903 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 09:55:33.903 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 09:55:33.903 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 09:55:37.537 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 09:55:37.547 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 09:55:38.200 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:55:38.200 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:55:38.200 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:55:38.200 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 09:55:38.200 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 09:55:42.630 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 10:08:54.608 [http-nio-9002-exec-3] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 251134 +2024-03-12 10:12:04.983 [http-nio-9002-exec-5] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 190371 +2024-03-12 10:18:36.678 [http-nio-9002-exec-7] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 391689 +2024-03-12 10:22:19.607 [http-nio-9002-exec-9] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 222925 +2024-03-12 10:29:22.143 [http-nio-9002-exec-1] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 422532 +2024-03-12 10:30:24.986 [http-nio-9002-exec-3] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 62840 +2024-03-12 14:10:30.413 [http-nio-9002-exec-8] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 119514 +2024-03-12 14:19:42.017 [http-nio-9002-exec-1] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 551600 +2024-03-12 14:22:09.236 [http-nio-9002-exec-6] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 147217 +2024-03-12 14:23:07.541 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 14:23:07.541 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 14:23:07.542 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 14:23:07.542 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 14:23:16.266 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 14:23:16.267 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 14:23:25.594 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 14:23:25.605 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 14:23:26.598 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:23:26.599 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:23:26.599 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:23:26.599 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:23:26.599 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 14:23:30.067 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 14:26:32.523 [Thread-27] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 14:26:32.523 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 14:26:32.523 [Thread-27] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 14:26:32.524 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 14:26:41.695 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 14:26:41.695 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 14:26:41.695 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 14:26:48.971 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 14:26:48.980 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 14:26:49.641 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:26:49.642 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:26:49.642 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:26:49.642 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:26:49.642 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 14:26:53.018 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 14:27:41.568 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 14:27:41.568 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 14:27:41.569 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 14:27:41.569 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 14:27:47.568 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 14:27:47.569 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 14:27:53.658 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 14:27:53.668 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 14:27:54.458 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:27:54.458 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:27:54.458 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:27:54.459 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 14:27:54.459 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 14:27:57.941 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 14:53:24.605 [http-nio-9002-exec-3] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 1519475 +2024-03-12 15:19:15.309 [http-nio-9002-exec-1] WARN com.alibaba.druid.pool.DruidAbstractDataSource - discard long time none received connection. , jdbcUrl : jdbc:mysql://localhost:3306/hoe_admin?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&useSSL=false&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai, version : 1.2.5, lastPacketReceivedIdleMillis : 1422196 +2024-03-12 15:29:07.624 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 15:29:07.623 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 15:29:07.626 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 15:29:07.643 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 15:29:14.110 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 15:29:14.111 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 15:29:24.888 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 15:29:24.901 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 15:29:25.920 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:29:25.920 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:29:25.920 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:29:25.920 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:29:25.920 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 15:29:29.601 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 15:36:53.098 [Thread-29] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 15:36:53.098 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 15:36:53.098 [Thread-29] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 15:36:53.099 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 15:37:01.483 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 15:37:01.484 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 15:37:07.385 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 15:37:07.394 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 15:37:08.094 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:37:08.095 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:37:08.095 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:37:08.095 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:37:08.095 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 15:37:11.032 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 15:37:58.470 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 15:37:58.471 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 15:37:58.471 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 15:37:58.472 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 15:38:05.548 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 15:38:05.549 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 15:38:11.448 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 15:38:11.457 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 15:38:12.171 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:38:12.171 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:38:12.171 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:38:12.172 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 15:38:12.172 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 15:38:15.569 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:23:21.145 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:23:21.145 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:23:21.146 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:23:21.146 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:23:29.313 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:23:29.314 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:23:37.406 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:23:37.418 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:23:38.408 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:23:38.409 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:23:38.409 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:23:38.409 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:23:38.409 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:23:40.326 [main] WARN org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'handlerExceptionResolver' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception), public cn.dev33.satoken.util.SaResult com.recovery.admin.boot.exception.GlobalExceptionHandler.handlerException(java.lang.Exception)} +2024-03-12 16:23:40.419 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:23:40.419 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:24:35.843 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:24:35.852 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:24:36.592 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:24:36.592 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:24:36.593 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:24:36.593 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:24:36.593 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:24:39.888 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:28:54.173 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:28:54.173 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:28:54.173 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:28:54.174 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:29:02.145 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:29:02.145 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:29:02.146 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:29:08.492 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:29:08.502 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:29:09.265 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:29:09.266 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:29:09.266 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:29:09.266 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:29:09.266 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:29:12.576 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:30:14.495 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:30:14.495 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:30:14.495 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:30:14.497 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:30:23.763 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:30:23.764 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:30:29.258 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:30:29.267 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:30:29.955 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:30:29.956 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:30:29.956 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:30:29.956 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:30:29.956 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:30:32.925 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:33:08.932 [Thread-3] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:33:08.932 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:33:08.933 [Thread-24] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:33:08.933 [Thread-3] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:33:15.136 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:33:15.136 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:33:15.136 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:33:22.175 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:33:22.193 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:33:23.761 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:33:23.761 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:33:23.761 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:33:23.761 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:33:23.761 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:33:28.287 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:36:17.820 [Thread-32] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:36:17.820 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:36:17.820 [Thread-32] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:36:17.821 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:36:23.063 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:36:23.064 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:36:23.064 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:36:29.549 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:36:29.561 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:36:30.430 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:36:30.430 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:36:30.430 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:36:30.431 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:36:30.431 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:36:34.139 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:38:16.441 [Thread-27] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:38:16.441 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:38:16.441 [Thread-27] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:38:16.441 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:38:25.747 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:38:25.747 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:38:25.748 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:38:31.439 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:38:31.450 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:38:32.206 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:38:32.207 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:38:32.207 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:38:32.207 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:38:32.207 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:38:35.580 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:40:00.472 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:40:00.472 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:40:00.473 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:40:00.473 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:40:07.195 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:40:07.196 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:40:07.196 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:40:13.380 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:40:13.390 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:40:14.204 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:40:14.204 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:40:14.204 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:40:14.204 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:40:14.204 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:40:17.609 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-12 16:45:19.815 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-12 16:45:19.815 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-12 16:45:19.816 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-12 16:45:19.817 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-12 16:45:29.005 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-12 16:45:29.005 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-12 16:45:29.005 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-12 16:45:35.075 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-12 16:45:35.084 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-12 16:45:35.817 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:45:35.817 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:45:35.817 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:45:35.817 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-12 16:45:35.817 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-12 16:45:38.837 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. diff --git a/logs/common/2024-03-13/debug-log.log b/logs/common/2024-03-13/debug-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-13/error-log.log b/logs/common/2024-03-13/error-log.log new file mode 100644 index 0000000..ea734e7 --- /dev/null +++ b/logs/common/2024-03-13/error-log.log @@ -0,0 +1,156 @@ +2024-03-13 10:12:20.429 [http-nio-9002-exec-1] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 您已被踢下线,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2024-03-13 13:53:59.930 [main] ERROR org.springframework.boot.SpringApplication - Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'scopedTarget.dynamicThreadPoolConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.dynamic.tp.corePoolSize' in value "${spring.dynamic.tp.corePoolSize}" + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1413) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:601) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:524) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$1(AbstractBeanFactory.java:374) + at org.springframework.cloud.context.scope.GenericScope$BeanLifecycleWrapper.getBean(GenericScope.java:376) + at org.springframework.cloud.context.scope.GenericScope.get(GenericScope.java:179) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:371) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1154) + at org.springframework.cloud.context.scope.refresh.RefreshScope.eagerlyInitialize(RefreshScope.java:125) + at org.springframework.cloud.context.scope.refresh.RefreshScope.start(RefreshScope.java:117) + at org.springframework.cloud.context.scope.refresh.RefreshScope.onApplicationEvent(RefreshScope.java:112) + at org.springframework.cloud.context.scope.refresh.RefreshScope.onApplicationEvent(RefreshScope.java:67) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) + at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:938) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:434) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:338) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1332) + at com.recovery.admin.boot.AdminApp.main(AdminApp.java:21) +Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.dynamic.tp.corePoolSize' in value "${spring.dynamic.tp.corePoolSize}" + at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:180) + at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:126) + at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239) + at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210) + at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:175) + at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:936) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1321) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:657) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) + at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) + ... 27 common frames omitted +2024-03-13 15:16:23.202 [http-nio-9002-exec-7] ERROR com.recovery.admin.boot.exception.GlobalExceptionHandler - BusinessException全局异常:{} +com.recovery.admin.boot.exception.BusinessException: 您已被踢下线,请重新登录! + at com.recovery.admin.boot.interceptor.JwtInterceptor.preHandle(JwtInterceptor.java:51) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1059) + 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.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaServletFilter.doFilter(SaServletFilter.java:150) + at 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:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) + at cn.dev33.satoken.filter.SaPathCheckFilterForServlet.doFilter(SaPathCheckFilterForServlet.java:55) + at 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:119) + 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:119) + at 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:119) + 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:542) + 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:357) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) diff --git a/logs/common/2024-03-13/info-log.log b/logs/common/2024-03-13/info-log.log new file mode 100644 index 0000000..2a92350 --- /dev/null +++ b/logs/common/2024-03-13/info-log.log @@ -0,0 +1,684 @@ +2024-03-13 10:11:19.731 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 10:11:19.732 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 10:11:19.732 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 10:11:19.735 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 10:11:19.736 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 10:11:20.738 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710295880737,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":148164510419600} from /192.168.110.210 +2024-03-13 10:11:20.738 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 10:11:20.739 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 10:11:22.223 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 10:11:22.223 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 10:11:23.888 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 10:11:26.891 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 10:11:26.891 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 10:11:26.891 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 10:11:43.130 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 10:11:44.063 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 10:11:44.092 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 10:11:44.119 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 10:11:44.131 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 10:11:44.136 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 10:11:44.945 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 10:11:44.949 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 10:11:44.977 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. +2024-03-13 10:11:45.205 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=216cb31f-437d-3c94-9dc4-e626d40a4219 +2024-03-13 10:11:45.584 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:11:45.589 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:11:45.844 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 10:11:45.852 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 10:11:45.852 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 10:11:45.853 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 10:11:45.953 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 10:11:45.953 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1789 ms +2024-03-13 10:11:45.989 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 10:11:46.008 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 10:11:46.928 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 10:11:48.891 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:11:48.892 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 10:11:48.892 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:11:48.973 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 10:11:48.989 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 10:11:48.994 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 10:11:48.994 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 10:11:48.997 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 10:11:49.291 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.361 seconds (JVM running for 8.891) +2024-03-13 10:11:49.292 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 10:11:49.294 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:11:49.295 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 10:11:49.295 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:11:49.295 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 10:11:49.295 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:11:49.295 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 10:11:49.989 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-13 10:11:49.994 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-13 10:11:50.007 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710295910006,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":148193779530500} from /192.168.110.210 +2024-03-13 10:12:19.774 [http-nio-9002-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 10:12:19.774 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 10:12:19.776 [http-nio-9002-exec-1] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-13 10:12:35.080 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-13 10:12:35.080 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 10:12:35.081 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:12:35.143 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:12:35.203 [http-nio-9002-exec-2] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 10:12:35.353 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 10:30:30.014 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 10:30:30.014 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 10:30:30.014 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 10:30:30.015 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 10:30:30.015 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 10:30:30.112 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 10:30:30.112 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 10:30:30.476 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-13 10:30:30.476 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 10:30:30.477 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 10:30:31.027 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710297031027,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":149314801014700} from /192.168.110.210 +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 10:30:48.394 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 10:30:49.156 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 10:30:49.186 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 10:30:49.215 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 10:30:49.222 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 10:30:49.227 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 10:30:50.142 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 10:30:50.145 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 10:30:50.172 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 Redis repository interfaces. +2024-03-13 10:30:50.640 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e743d36d-f97e-37cb-baa9-d743fefe56b4 +2024-03-13 10:30:51.039 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:30:51.043 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:30:51.050 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c805ac63] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:30:51.060 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:30:51.339 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 10:30:51.349 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 10:30:51.349 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 10:30:51.350 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 10:30:51.462 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 10:30:51.462 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2212 ms +2024-03-13 10:30:51.644 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 10:30:51.668 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 10:30:52.601 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 10:30:53.086 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:30:53.086 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 10:30:53.087 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:30:53.626 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 10:30:55.038 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 10:30:55.190 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 10:30:55.207 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 10:30:55.212 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 10:30:55.213 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 10:30:55.215 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 10:30:55.523 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.203 seconds (JVM running for 9.82) +2024-03-13 10:30:55.539 [main] INFO com.dtp.core.DtpRegistry - DtpRegistry initialization end, remote dtpExecutors: [], local dtpExecutors: [], local commonExecutors: [] +2024-03-13 10:30:55.541 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 10:30:55.543 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:30:55.544 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 10:30:55.544 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:30:55.544 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 10:30:55.544 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:30:55.544 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 10:30:55.771 [RMI TCP Connection(2)-192.168.110.210] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 10:30:55.772 [RMI TCP Connection(2)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 10:30:55.775 [RMI TCP Connection(2)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 3 ms +2024-03-13 10:30:56.069 [RMI TCP Connection(1)-192.168.110.210] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 10:30:56.212 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-13 10:30:56.216 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-13 10:30:56.220 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710297056220,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":149339993250400} from /192.168.110.210 +2024-03-13 10:31:50.926 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-13 10:31:50.926 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 10:31:50.926 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:31:50.993 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:31:51.019 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-2} inited +2024-03-13 10:31:51.048 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-13 10:31:51.052 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 10:31:51.073 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 10:31:51 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 10:31:51.074 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 10:31:51 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 10:32:40.596 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 10:32:40.596 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 10:32:40.596 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 10:32:40.597 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 10:32:40.598 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 10:32:41.605 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710297161605,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":149445378519700} from /192.168.110.210 +2024-03-13 10:32:41.606 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +2024-03-13 10:32:41.607 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 10:32:43.600 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 10:32:43.600 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 10:32:46.279 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 10:32:49.282 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 10:32:49.282 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 10:32:49.282 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 10:32:49.282 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 10:32:49.282 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 10:32:49.283 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 10:32:49.283 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 10:32:49.283 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 10:32:55.499 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 10:32:56.109 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 10:32:56.134 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 10:32:56.156 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 10:32:56.163 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 10:32:56.167 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 10:32:56.954 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 10:32:56.956 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 10:32:56.976 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. +2024-03-13 10:32:57.252 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e743d36d-f97e-37cb-baa9-d743fefe56b4 +2024-03-13 10:32:57.515 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:32:57.520 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:32:57.525 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$d8f3cfd4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:32:57.534 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:32:57.770 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 10:32:57.779 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 10:32:57.780 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 10:32:57.780 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 10:32:57.891 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 10:32:57.891 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1704 ms +2024-03-13 10:32:58.070 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 10:32:58.094 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 10:32:59.031 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 10:32:59.500 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:32:59.501 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 10:32:59.501 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:33:00.045 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 10:33:01.486 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 10:33:01.639 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 10:33:01.655 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 10:33:01.660 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 10:33:01.660 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 10:33:01.663 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 10:33:01.980 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.235 seconds (JVM running for 8.125) +2024-03-13 10:33:01.996 [main] INFO com.dtp.core.DtpRegistry - DtpRegistry initialization end, remote dtpExecutors: [], local dtpExecutors: [], local commonExecutors: [] +2024-03-13 10:33:01.998 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 10:33:02.000 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:33:02.001 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 10:33:02.001 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:33:02.002 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 10:33:02.002 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:33:02.002 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 10:33:02.536 [RMI TCP Connection(1)-192.168.110.210] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 10:33:02.658 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 10:33:02.662 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 10:33:02.676 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710297182675,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":149466448991800} from /192.168.110.210 +2024-03-13 10:33:02.767 [RMI TCP Connection(3)-192.168.110.210] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 10:33:02.767 [RMI TCP Connection(3)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 10:33:02.770 [RMI TCP Connection(3)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 3 ms +2024-03-13 10:33:20.586 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-13 10:33:20.586 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 10:33:20.587 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:33:20.663 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:33:20.693 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-2} inited +2024-03-13 10:33:20.727 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-13 10:33:20.730 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 10:33:20.753 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 10:33:20 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 10:33:20.754 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 10:33:20 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 10:33:23.729 [T] INFO com.recovery.admin.boot.controller.testController - 获取线程的数据==null +2024-03-13 10:33:41.686 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 10:33:41.686 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 10:33:41.687 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 10:33:41.688 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 10:33:41.689 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 10:33:41.704 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 10:33:41.704 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 10:33:42.691 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 10:33:42.692 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 10:33:42.692 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 10:33:45.701 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 10:33:45.701 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 10:33:45.701 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 10:33:45.701 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 10:33:45.701 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 10:33:45.702 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 10:33:45.702 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 10:33:45.702 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 10:33:51.063 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 10:33:51.804 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 10:33:51.835 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 10:33:51.869 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 10:33:51.877 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 10:33:51.881 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 10:33:52.760 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 10:33:52.762 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 10:33:52.784 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-13 10:33:53.120 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e743d36d-f97e-37cb-baa9-d743fefe56b4 +2024-03-13 10:33:53.430 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:33:53.434 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:33:53.440 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$85aa1c6f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:33:53.449 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 10:33:53.704 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 10:33:53.713 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 10:33:53.714 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 10:33:53.714 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 10:33:53.824 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 10:33:53.824 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1920 ms +2024-03-13 10:33:54.024 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 10:33:54.049 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 10:33:54.978 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 10:33:55.458 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:33:55.458 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 10:33:55.459 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 10:33:56.001 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 10:33:57.462 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 10:33:57.614 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 10:33:57.631 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 10:33:57.635 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 10:33:57.636 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 10:33:57.638 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 10:33:57.956 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.652 seconds (JVM running for 8.589) +2024-03-13 10:33:57.971 [main] INFO com.dtp.core.DtpRegistry - DtpRegistry initialization end, remote dtpExecutors: [], local dtpExecutors: [], local commonExecutors: [] +2024-03-13 10:33:57.972 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 10:33:57.975 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:33:57.976 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 10:33:57.976 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:33:57.976 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 10:33:57.976 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 10:33:57.976 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 10:33:58.522 [RMI TCP Connection(2)-192.168.110.210] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 10:33:58.522 [RMI TCP Connection(2)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 10:33:58.524 [RMI TCP Connection(2)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-13 10:33:58.634 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 10:33:58.638 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 10:33:58.643 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710297238642,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":149522415356700} from /192.168.110.210 +2024-03-13 10:33:58.686 [RMI TCP Connection(1)-192.168.110.210] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 10:34:06.041 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-13 10:34:06.041 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 10:34:06.042 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:34:06.116 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 10:34:06.144 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-2} inited +2024-03-13 10:34:06.175 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-13 10:34:06.175 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 111获取线程的数据==hoe-cs1 +2024-03-13 10:34:06.177 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 10:34:06.200 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 10:34:06 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 10:34:06.201 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 10:34:06 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 10:34:09.177 [T] INFO com.recovery.admin.boot.controller.testController - 获取线程的数据==null +2024-03-13 11:00:26.358 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 11:00:26.359 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 11:00:26.359 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 11:00:26.360 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 11:00:26.360 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 11:00:27.368 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710298827368,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":151111141246000} from /192.168.110.210 +2024-03-13 11:00:27.368 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 11:00:27.369 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 11:00:28.800 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 11:00:28.800 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 11:00:29.329 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 11:00:32.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 11:00:32.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 11:00:32.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 11:00:32.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 11:00:32.333 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 11:00:32.334 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 11:00:32.334 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 11:00:32.334 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 11:00:37.978 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 11:00:38.642 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 11:00:38.670 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 11:00:38.695 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 11:00:38.702 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 11:00:38.706 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 11:00:39.520 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 11:00:39.522 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 11:00:39.544 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2024-03-13 11:00:39.872 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e743d36d-f97e-37cb-baa9-d743fefe56b4 +2024-03-13 11:00:40.148 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:00:40.153 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:00:40.159 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$d046c4d8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:00:40.167 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:00:40.403 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 11:00:40.411 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 11:00:40.411 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 11:00:40.412 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 11:00:40.506 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 11:00:40.506 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1781 ms +2024-03-13 11:00:40.669 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 11:00:40.692 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 11:00:41.542 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 11:00:41.986 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 11:00:41.986 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 11:00:41.986 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 11:00:42.482 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 11:00:44.055 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 11:00:44.247 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 11:00:44.266 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 11:00:44.272 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 11:00:44.273 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 11:00:44.275 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 11:00:44.603 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 7.428 seconds (JVM running for 8.46) +2024-03-13 11:00:44.621 [main] INFO com.dtp.core.DtpRegistry - DtpRegistry initialization end, remote dtpExecutors: [], local dtpExecutors: [], local commonExecutors: [] +2024-03-13 11:00:44.622 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 11:00:44.626 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 11:00:44.627 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 11:00:44.627 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 11:00:44.627 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 11:00:44.627 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 11:00:44.627 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 11:00:45.284 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710298845278,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":151129051180700} from /192.168.110.210 +2024-03-13 11:00:45.306 [RMI TCP Connection(2)-192.168.110.210] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 11:00:45.307 [RMI TCP Connection(2)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 11:00:45.312 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 11:00:45.312 [RMI TCP Connection(2)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 5 ms +2024-03-13 11:00:45.319 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 11:00:45.554 [RMI TCP Connection(1)-192.168.110.210] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 11:00:50.153 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-13 11:00:50.153 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 11:00:50.154 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 11:00:50.239 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 11:00:50.279 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-2} inited +2024-03-13 11:00:50.320 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-13 11:00:50.321 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.controller.testController - 111获取线程的数据==hoe-cs1 +2024-03-13 11:00:50.324 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 11:00:50.356 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 11:00:50 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 11:00:50.356 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 11:00:50 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 11:00:53.324 [T] INFO com.recovery.admin.boot.controller.testController - 获取线程的数据==hoe-cs1 +2024-03-13 11:05:31.372 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 11:05:31.373 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 11:05:31.373 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 11:05:31.374 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 11:05:31.374 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 11:05:32.378 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710299132378,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":151416151655800} from /192.168.110.210 +2024-03-13 11:05:32.379 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 11:05:32.380 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 11:05:34.377 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 11:05:34.377 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 11:05:35.420 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 11:05:38.423 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 11:05:38.423 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 11:05:38.423 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 11:05:38.423 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 11:05:38.423 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 11:05:38.424 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 11:05:38.424 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 11:05:38.424 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 11:05:45.233 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 11:05:46.019 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 11:05:46.049 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 11:05:46.076 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 11:05:46.083 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 11:05:46.088 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 11:05:47.090 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 11:05:47.092 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 11:05:47.117 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 Redis repository interfaces. +2024-03-13 11:05:47.608 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e743d36d-f97e-37cb-baa9-d743fefe56b4 +2024-03-13 11:05:48.046 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:05:48.053 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:05:48.059 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$7c9699fe] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:05:48.072 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 11:05:48.404 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 11:05:48.414 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 11:05:48.415 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 11:05:48.415 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 11:05:48.529 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 11:05:48.529 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2416 ms +2024-03-13 11:05:48.744 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 11:05:48.773 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 11:05:49.778 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 11:05:50.284 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 11:05:50.285 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 11:05:50.285 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 11:05:50.844 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 11:05:52.335 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 11:05:52.529 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 11:05:52.551 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 11:05:52.556 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 11:05:52.557 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 11:05:52.561 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 11:05:52.977 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 9.007 seconds (JVM running for 10.746) +2024-03-13 11:05:52.997 [main] INFO com.dtp.core.DtpRegistry - DtpRegistry initialization end, remote dtpExecutors: [], local dtpExecutors: [], local commonExecutors: [] +2024-03-13 11:05:52.999 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 11:05:53.002 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 11:05:53.003 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 11:05:53.003 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 11:05:53.003 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 11:05:53.004 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 11:05:53.004 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 11:05:53.548 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 11:05:53.554 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 11:05:53.568 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710299153567,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":151437341043400} from /192.168.110.210 +2024-03-13 11:05:53.737 [RMI TCP Connection(4)-192.168.110.210] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 11:05:53.737 [RMI TCP Connection(4)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 11:05:53.739 [RMI TCP Connection(4)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-03-13 11:05:53.875 [RMI TCP Connection(5)-192.168.110.210] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 13:53:28.640 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 13:53:28.640 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 13:53:28.640 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 13:53:28.641 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 13:53:28.642 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 13:53:29.642 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710309209642,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":161493415482500} from /192.168.110.210 +2024-03-13 13:53:29.643 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +2024-03-13 13:53:29.643 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 13:53:31.337 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 13:53:31.337 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 13:53:33.341 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 13:53:36.378 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 13:53:36.378 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 13:53:36.378 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 13:53:36.378 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 13:53:36.378 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 13:53:36.379 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 13:53:36.379 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 13:53:36.379 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 13:53:43.605 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 13:53:44.246 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 13:53:44.274 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 13:53:44.301 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 13:53:44.309 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 13:53:44.314 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 13:53:45.224 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 13:53:45.226 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 13:53:45.248 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-03-13 13:53:45.552 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e87b7e50-a904-3b2b-a31b-c98f370dc516 +2024-03-13 13:53:45.862 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:53:45.866 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:53:45.871 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$4791cbb5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:53:45.879 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:53:46.113 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 13:53:46.123 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 13:53:46.124 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 13:53:46.124 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 13:53:46.226 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 13:53:46.227 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1888 ms +2024-03-13 13:53:46.407 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 13:53:46.429 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 13:53:47.070 [main] INFO com.dtp.core.DtpRegistry - DynamicTp register dtpExecutor, source: beanPostProcessor, executor: DtpMainProp(threadPoolName=dtpExecutor, corePoolSize=5, maxPoolSize=18, keepAliveTime=50, queueType=VariableLinkedBlockingQueue, queueCapacity=400, rejectType=CallerRunsPolicy, allowCoreThreadTimeOut=false) +2024-03-13 13:53:47.337 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 13:53:47.891 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 13:53:47.891 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 13:53:47.891 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 13:53:48.488 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 13:53:50.132 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 13:53:50.302 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 13:53:50.322 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 13:53:50.327 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 13:53:50.328 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 13:53:50.330 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 13:53:50.672 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 13:53:50.672 [main] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 13:53:50.672 [main] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 13:53:50.674 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 13:53:50.675 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 13:53:51.335 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710309231334,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":161515107994200} from /192.168.110.210 +2024-03-13 13:53:53.687 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 13:53:53.688 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 13:53:56.698 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 13:53:59.716 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 13:53:59.716 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 13:53:59.717 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 13:53:59.717 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 13:53:59.717 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 13:53:59.717 [main] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 13:53:59.717 [main] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 13:53:59.718 [main] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 13:53:59.719 [main] INFO com.dtp.core.spring.DtpLifecycleSupport - Shutting down ExecutorService, poolName: dtpExecutor +2024-03-13 13:53:59.887 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Pausing ProtocolHandler ["http-nio-9002"] +2024-03-13 13:53:59.887 [main] INFO org.apache.catalina.core.StandardService - Stopping service [Tomcat] +2024-03-13 13:53:59.896 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Stopping ProtocolHandler ["http-nio-9002"] +2024-03-13 13:53:59.897 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Destroying ProtocolHandler ["http-nio-9002"] +2024-03-13 13:53:59.909 [main] INFO org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2024-03-13 13:55:15.275 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-13 13:55:16.112 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-13 13:55:16.145 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-13 13:55:16.176 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-13 13:55:16.185 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-13 13:55:16.190 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-13 13:55:17.259 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-13 13:55:17.262 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-13 13:55:17.294 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. +2024-03-13 13:55:17.740 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e87b7e50-a904-3b2b-a31b-c98f370dc516 +2024-03-13 13:55:18.104 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:55:18.109 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:55:18.115 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c912ed31] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:55:18.125 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-13 13:55:18.409 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-13 13:55:18.419 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-13 13:55:18.419 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-13 13:55:18.420 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-13 13:55:18.543 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-13 13:55:18.543 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2326 ms +2024-03-13 13:55:18.743 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-13 13:55:18.771 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-13 13:55:19.523 [main] INFO com.dtp.core.DtpRegistry - DynamicTp register dtpExecutor, source: beanPostProcessor, executor: DtpMainProp(threadPoolName=dtpExecutor, corePoolSize=5, maxPoolSize=18, keepAliveTime=50, queueType=VariableLinkedBlockingQueue, queueCapacity=400, rejectType=CallerRunsPolicy, allowCoreThreadTimeOut=false) +2024-03-13 13:55:19.811 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-13 13:55:20.335 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 13:55:20.335 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null +2024-03-13 13:55:20.336 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null +2024-03-13 13:55:20.937 [main] INFO com.dtp.core.support.DtpBannerPrinter - +| __ \ (_) |__ __| +| | | |_ _ _ __ __ _ _ __ ___ _ ___| |_ __ +| | | | | | | '_ \ / _` | '_ ` _ \| |/ __| | '_ \ +| |__| | |_| | | | | (_| | | | | | | | (__| | |_) | +|_____/ \__, |_| |_|\__,_|_| |_| |_|_|\___|_| .__/ + __/ | | | + |___/ |_| + :: Dynamic Thread Pool ::  +2024-03-13 13:55:22.504 [main] INFO org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 1 endpoint(s) beneath base path '/actuator' +2024-03-13 13:55:22.670 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-9002"] +2024-03-13 13:55:22.688 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9002 (http) with context path '' +2024-03-13 13:55:22.693 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=9002, ip='192.168.110.210', weight=1.0, serviceName='DEFAULT_GROUP@@hoe-admin', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map. +2024-03-13 13:55:22.694 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce registering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}} +2024-03-13 13:55:22.696 [main] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoe-admin 192.168.110.210:9002 register finished +2024-03-13 13:55:23.027 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] order-service-dev.yml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 13:55:23.028 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=order-service-dev.yml, group=dev, cnt=1 +2024-03-13 13:55:23.043 [main] INFO com.recovery.admin.boot.AdminApp - Started AdminApp in 8.916 seconds (JVM running for 10.572) +2024-03-13 13:55:23.060 [main] INFO com.dtp.core.DtpRegistry - DtpRegistry initialization end, remote dtpExecutors: [dtpExecutor], local dtpExecutors: [], local commonExecutors: [] +2024-03-13 13:55:23.066 [main] INFO com.recovery.admin.boot.listener.InitResourcePermissionCache - 刷新权限------------------------------ +2024-03-13 13:55:23.068 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 13:55:23.068 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin.yaml, group=dev, cnt=1 +2024-03-13 13:55:23.068 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 13:55:23.068 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin, group=dev, cnt=1 +2024-03-13 13:55:23.068 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [subscribe] hoe-admin-dev.yaml+dev+11bfd099-10d6-4f2c-b969-58b76e435cce +2024-03-13 13:55:23.068 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-localhost_8848-11bfd099-10d6-4f2c-b969-58b76e435cce] [add-listener] ok, tenant=11bfd099-10d6-4f2c-b969-58b76e435cce, dataId=hoe-admin-dev.yaml, group=dev, cnt=1 +2024-03-13 13:55:23.641 [RMI TCP Connection(1)-192.168.110.210] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-03-13 13:55:23.641 [RMI TCP Connection(1)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-03-13 13:55:23.644 [RMI TCP Connection(1)-192.168.110.210] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 3 ms +2024-03-13 13:55:23.683 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 13:55:23.689 [com.alibaba.nacos.client.naming.updater] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 13:55:23.710 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"hosts\":[{\"ip\":\"192.168.110.210\",\"port\":9002,\"valid\":true,\"healthy\":true,\"marked\":false,\"instanceId\":\"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin\",\"metadata\":{\"preserved.register.source\":\"SPRING_CLOUD\"},\"enabled\":true,\"weight\":1.0,\"clusterName\":\"DEFAULT\",\"serviceName\":\"DEFAULT_GROUP@@hoe-admin\",\"ephemeral\":true}],\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710309323709,\"checksum\":\"3260175e29ef9a4de146167d0c8c282d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"metadata\":{}}","lastRefTime":161607482430600} from /192.168.110.210 +2024-03-13 13:55:23.865 [RMI TCP Connection(2)-192.168.110.210] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited +2024-03-13 13:55:42.713 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/rest/users/getUserByUsername +2024-03-13 13:55:42.714 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 13:55:42.714 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 13:55:42.794 [http-nio-9002-exec-1] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 13:55:42.830 [http-nio-9002-exec-1] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-2} inited +2024-03-13 13:55:42.866 [http-nio-9002-exec-1] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 13:55:45.535 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-13 13:55:45.535 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 13:55:45.535 [http-nio-9002-exec-2] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 13:55:45.541 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-13 13:55:45.542 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.controller.testController - 111获取线程的数据==hoe-cs1 +2024-03-13 13:55:45.544 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 13:55:45.545 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 13:55:45 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 13:55:45.545 [http-nio-9002-exec-2] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 13:55:45 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 13:55:48.545 [T] INFO com.recovery.admin.boot.controller.testController - 获取线程的数据==hoe-cs1 +2024-03-13 15:16:11.636 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs +2024-03-13 15:16:11.636 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 15:16:11.636 [http-nio-9002-exec-5] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 15:16:11.640 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.controller.testController - 测试库:1 +2024-03-13 15:16:11.641 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.controller.testController - 111获取线程的数据==hoe-cs1 +2024-03-13 15:16:11.642 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 15:16:11.643 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 15:16:11 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 15:16:11.643 [http-nio-9002-exec-5] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 15:16:11 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs +2024-03-13 15:16:14.643 [T] INFO com.recovery.admin.boot.controller.testController - 获取线程的数据==hoe-cs1 +2024-03-13 15:16:18.698 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求地址:/api/v1/test/cs1 +2024-03-13 15:16:18.698 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.aspect.WebLogAspect - 获取请求ip:192.168.110.210 +2024-03-13 15:16:18.698 [http-nio-9002-exec-6] INFO com.recovery.common.base.utils.RedisUtils - 查询数据库:hoe:hospital:dbInfo:hoe-cs1_admin +2024-03-13 15:16:18.737 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.aspect.WebLogAspect - 清除数据源=========================================== +2024-03-13 15:16:18.738 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 15:16:18 CST 2024--postHandle:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-13 15:16:18.738 [http-nio-9002-exec-6] INFO com.recovery.admin.boot.interceptor.JwtInterceptor - Wed Mar 13 15:16:18 CST 2024--afterCompletion:http://192.168.110.210:9002/api/v1/test/cs1 +2024-03-13 17:01:11.909 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registering from Nacos Server now... +2024-03-13 17:01:11.909 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [BEAT] removing beat: DEFAULT_GROUP@@hoe-admin:192.168.110.210:9002 from beat map. +2024-03-13 17:01:11.909 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] 11bfd099-10d6-4f2c-b969-58b76e435cce deregistering service DEFAULT_GROUP@@hoe-admin with instance: Instance{instanceId='null', ip='192.168.110.210', port=9002, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +2024-03-13 17:01:11.911 [SpringApplicationShutdownHook] INFO com.alibaba.cloud.nacos.registry.NacosServiceRegistry - De-registration finished. +2024-03-13 17:01:11.912 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown begin +2024-03-13 17:01:12.919 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - received push data: {"type":"dom","data":"{\"dom\":\"DEFAULT_GROUP@@hoe-admin\",\"name\":\"DEFAULT_GROUP@@hoe-admin\",\"cacheMillis\":10000,\"lastRefTime\":1710320472919,\"checksum\":\"22271bd87073759ac6c33b80e3dda60d\",\"useSpecifiedURL\":false,\"clusters\":\"DEFAULT\",\"env\":\"\",\"hosts\":[],\"metadata\":{}}","lastRefTime":172756692940100} from /192.168.110.210 +2024-03-13 17:01:12.920 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [{"instanceId":"192.168.110.210#9002#DEFAULT#DEFAULT_GROUP@@hoe-admin","ip":"192.168.110.210","port":9002,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoe-admin","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +2024-03-13 17:01:12.921 [com.alibaba.nacos.naming.push.receiver] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DEFAULT_GROUP@@hoe-admin@@DEFAULT -> [] +2024-03-13 17:01:14.914 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.beat.BeatReactor do shutdown stop +2024-03-13 17:01:14.914 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown begin +2024-03-13 17:01:17.917 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown begin +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.PushReceiver do shutdown stop +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.HostReactor do shutdown stop +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown begin +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialWatcher - [null] CredentialWatcher is stopped +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.identify.CredentialService - [null] CredentialService is freed +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.net.NamingProxy do shutdown stop +2024-03-13 17:01:20.921 [SpringApplicationShutdownHook] INFO com.dtp.core.spring.DtpLifecycleSupport - Shutting down ExecutorService, poolName: dtpExecutor diff --git a/logs/common/2024-03-13/trace-log.log b/logs/common/2024-03-13/trace-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-13/warn-log.log b/logs/common/2024-03-13/warn-log.log new file mode 100644 index 0000000..0745a56 --- /dev/null +++ b/logs/common/2024-03-13/warn-log.log @@ -0,0 +1,140 @@ +2024-03-13 10:11:19.551 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 10:11:19.551 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 10:11:19.553 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 10:11:19.553 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 10:11:26.890 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 10:11:26.891 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 10:11:44.115 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 10:11:44.130 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 10:11:45.121 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:11:45.122 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:11:45.122 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:11:45.122 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:11:45.122 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 10:11:48.486 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 10:30:29.843 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 10:30:29.844 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 10:30:29.845 [Thread-28] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 10:30:29.845 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 10:30:33.480 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 10:30:49.211 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 10:30:49.221 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 10:30:49.957 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 10:30:50.348 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:30:50.348 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:30:50.348 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:30:50.348 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:30:50.348 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 10:30:54.498 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 10:30:55.539 [main] WARN com.dtp.core.DtpRegistry - DtpRegistry initialization end, no notify platforms configured. +2024-03-13 10:32:40.436 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 10:32:40.436 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 10:32:40.436 [Thread-25] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 10:32:40.437 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 10:32:49.283 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 10:32:49.283 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 10:32:49.283 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 10:32:56.153 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 10:32:56.163 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 10:32:56.790 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 10:32:57.117 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:32:57.117 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:32:57.117 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:32:57.117 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:32:57.117 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 10:33:00.921 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 10:33:01.996 [main] WARN com.dtp.core.DtpRegistry - DtpRegistry initialization end, no notify platforms configured. +2024-03-13 10:33:41.506 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 10:33:41.506 [Thread-22] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 10:33:41.507 [Thread-22] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 10:33:41.507 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 10:33:45.702 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 10:33:45.702 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 10:33:45.702 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 10:33:51.865 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 10:33:51.876 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 10:33:52.584 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 10:33:52.955 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:33:52.955 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:33:52.955 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:33:52.955 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 10:33:52.956 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 10:33:56.920 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 10:33:57.971 [main] WARN com.dtp.core.DtpRegistry - DtpRegistry initialization end, no notify platforms configured. +2024-03-13 11:00:26.182 [Thread-23] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 11:00:26.182 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 11:00:26.183 [Thread-23] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 11:00:26.184 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 11:00:32.334 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 11:00:32.334 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 11:00:32.334 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 11:00:38.692 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 11:00:38.701 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 11:00:39.358 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 11:00:39.705 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:00:39.705 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:00:39.705 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:00:39.705 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:00:39.706 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 11:00:43.386 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 11:00:44.621 [main] WARN com.dtp.core.DtpRegistry - DtpRegistry initialization end, no notify platforms configured. +2024-03-13 11:05:31.217 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 11:05:31.217 [Thread-22] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 11:05:31.218 [Thread-22] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 11:05:31.218 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 11:05:38.424 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 11:05:38.424 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 11:05:38.424 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 11:05:46.073 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 11:05:46.083 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 11:05:46.724 [main] WARN com.dtp.core.spring.DtpBeanDefinitionRegistrar - DynamicTp registrar, no executors are configured. +2024-03-13 11:05:46.884 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 11:05:47.370 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:05:47.370 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:05:47.370 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:05:47.370 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 11:05:47.370 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 11:05:51.754 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 11:05:52.997 [main] WARN com.dtp.core.DtpRegistry - DtpRegistry initialization end, no notify platforms configured. +2024-03-13 13:53:28.412 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 13:53:28.412 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 13:53:28.413 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 13:53:28.413 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 13:53:36.378 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 13:53:36.379 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 13:53:36.379 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 13:53:44.298 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 13:53:44.308 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 13:53:45.044 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 13:53:45.490 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:53:45.491 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:53:45.491 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:53:45.491 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:53:45.491 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 13:53:49.465 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 13:53:50.667 [main] WARN org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'scopedTarget.dynamicThreadPoolConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.dynamic.tp.corePoolSize' in value "${spring.dynamic.tp.corePoolSize}" +2024-03-13 13:53:59.717 [main] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 13:53:59.717 [main] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 13:53:59.718 [main] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException +2024-03-13 13:55:05.708 [Thread-23] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 13:55:05.709 [Thread-23] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 13:55:05.709 [Thread-4] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 13:55:16.171 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-13 13:55:16.184 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-13 13:55:17.051 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-13 13:55:17.660 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:55:17.661 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:55:17.661 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:55:17.661 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-13 13:55:17.661 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-13 13:55:21.898 [main] WARN org.springframework.cloud.loadbalancer.config.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-03-13 17:01:11.611 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-13 17:01:11.611 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher +2024-03-13 17:01:11.612 [Thread-26] WARN com.alibaba.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end +2024-03-13 17:01:11.612 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate +2024-03-13 17:01:20.919 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end +2024-03-13 17:01:20.920 [SpringApplicationShutdownHook] WARN org.springframework.beans.factory.support.DisposableBeanAdapter - Destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException diff --git a/logs/common/2024-03-14/debug-log.log b/logs/common/2024-03-14/debug-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-14/error-log.log b/logs/common/2024-03-14/error-log.log new file mode 100644 index 0000000..7d83247 --- /dev/null +++ b/logs/common/2024-03-14/error-log.log @@ -0,0 +1,39 @@ +2024-03-14 09:43:04.891 [main] ERROR org.springframework.boot.SpringApplication - Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'handlerExceptionResolver' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exception(java.lang.Exception), public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception)} + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) + at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1334) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1177) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:564) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:524) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:944) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:434) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:338) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1332) + at com.recovery.admin.boot.AdminApp.main(AdminApp.java:21) +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exception(java.lang.Exception), public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception)} + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) + ... 19 common frames omitted +Caused by: java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exception(java.lang.Exception), public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception)} + at org.springframework.web.method.annotation.ExceptionHandlerMethodResolver.addExceptionMapping(ExceptionHandlerMethodResolver.java:114) + at org.springframework.web.method.annotation.ExceptionHandlerMethodResolver.(ExceptionHandlerMethodResolver.java:78) + at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.initExceptionHandlerAdviceCache(ExceptionHandlerExceptionResolver.java:291) + at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.afterPropertiesSet(ExceptionHandlerExceptionResolver.java:268) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.addDefaultHandlerExceptionResolvers(WebMvcConfigurationSupport.java:1090) + at org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.handlerExceptionResolver(WebMvcConfigurationSupport.java:1032) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) + ... 20 common frames omitted diff --git a/logs/common/2024-03-14/info-log.log b/logs/common/2024-03-14/info-log.log new file mode 100644 index 0000000..74c9191 --- /dev/null +++ b/logs/common/2024-03-14/info-log.log @@ -0,0 +1,29 @@ +2024-03-14 09:43:00.506 [background-preinit] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.2.0.Final +2024-03-14 09:43:01.256 [main] INFO com.alibaba.nacos.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\Administrator\nacos\config +2024-03-14 09:43:01.285 [main] INFO com.alibaba.nacos.client.config.impl.Limiter - limitTime:5.0 +2024-03-14 09:43:01.313 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false +2024-03-14 09:43:01.321 [main] INFO org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoe-admin-dev.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin.yaml,dev'}, BootstrapPropertySource {name='bootstrapProperties-hoe-admin,dev'}] +2024-03-14 09:43:01.325 [main] INFO com.recovery.admin.boot.AdminApp - The following profiles are active: dev +2024-03-14 09:43:02.508 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode! +2024-03-14 09:43:02.510 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-03-14 09:43:02.535 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 Redis repository interfaces. +2024-03-14 09:43:02.863 [main] INFO org.springframework.cloud.context.scope.GenericScope - BeanFactory id=e87b7e50-a904-3b2b-a31b-c98f370dc516 +2024-03-14 09:43:03.177 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-14 09:43:03.181 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-14 09:43:03.187 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration' of type [com.dtp.starter.common.autoconfigure.BaseBeanAutoConfiguration$$EnhancerBySpringCGLIB$$7974efa5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-14 09:43:03.196 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dtpApplicationContextHolder' of type [com.dtp.common.ApplicationContextHolder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-03-14 09:43:03.462 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9002 (http) +2024-03-14 09:43:03.471 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-9002"] +2024-03-14 09:43:03.472 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat] +2024-03-14 09:43:03.472 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.52] +2024-03-14 09:43:03.581 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-03-14 09:43:03.581 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2231 ms +2024-03-14 09:43:03.767 [main] INFO com.recovery.admin.boot.config.SaTokenConfigure - 校验是否是网关转发请求:==================== +2024-03-14 09:43:03.794 [main] INFO org.springframework.boot.web.servlet.RegistrationBean - Servlet dispatcherServlet was not registered (possibly already registered?) +2024-03-14 09:43:04.478 [main] INFO com.dtp.core.DtpRegistry - DynamicTp register dtpExecutor, source: beanPostProcessor, executor: DtpMainProp(threadPoolName=dtpExecutor, corePoolSize=5, maxPoolSize=18, keepAliveTime=50, queueType=VariableLinkedBlockingQueue, queueCapacity=400, rejectType=CallerRunsPolicy, allowCoreThreadTimeOut=false) +2024-03-14 09:43:04.745 [main] INFO com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-03-14 09:43:04.831 [main] INFO com.dtp.core.spring.DtpLifecycleSupport - Shutting down ExecutorService, poolName: dtpExecutor +2024-03-14 09:43:04.847 [main] INFO org.apache.catalina.core.StandardService - Stopping service [Tomcat] +2024-03-14 09:43:04.871 [main] INFO org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener - + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. diff --git a/logs/common/2024-03-14/trace-log.log b/logs/common/2024-03-14/trace-log.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/common/2024-03-14/warn-log.log b/logs/common/2024-03-14/warn-log.log new file mode 100644 index 0000000..c1d9160 --- /dev/null +++ b/logs/common/2024-03-14/warn-log.log @@ -0,0 +1,11 @@ +2024-03-14 09:43:01.309 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin] & group[dev] +2024-03-14 09:43:01.320 [main] WARN com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoe-admin-dev.yaml] & group[dev] +2024-03-14 09:43:02.323 [main] WARN org.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'dynamic-tp' contains invalid characters, please migrate to a valid format. +2024-03-14 09:43:02.790 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'memberUserMapper' and 'com.recovery.admin.boot.mapper.MemberUserMapper' mapperInterface. Bean already defined with the same name! +2024-03-14 09:43:02.792 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysOauthClientMapper' and 'com.recovery.admin.boot.mapper.SysOauthClientMapper' mapperInterface. Bean already defined with the same name! +2024-03-14 09:43:02.792 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysPermissionMapper' and 'com.recovery.admin.boot.mapper.SysPermissionMapper' mapperInterface. Bean already defined with the same name! +2024-03-14 09:43:02.792 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.recovery.admin.boot.mapper.UserMapper' mapperInterface. Bean already defined with the same name! +2024-03-14 09:43:02.792 [main] WARN org.mybatis.spring.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.recovery.admin.boot.mapper]' package. Please check your configuration. +2024-03-14 09:43:04.831 [main] WARN org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'handlerExceptionResolver' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.HandlerExceptionResolver]: Factory method 'handlerExceptionResolver' threw exception; nested exception is java.lang.IllegalStateException: Ambiguous @ExceptionHandler method mapped for [class java.lang.Exception]: {public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exception(java.lang.Exception), public com.recovery.common.base.result.ApiResult com.recovery.admin.boot.exception.GlobalExceptionHandler.exceptionHandler(java.lang.Exception)} +2024-03-14 09:43:04.910 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient +2024-03-14 09:43:04.911 [Thread-5] WARN com.alibaba.nacos.common.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end