修复tag大小写重复导致导入题目识别,增加tag根据oj归类

This commit is contained in:
Himit_ZH 2021-06-15 12:55:16 +08:00
parent 713315f10a
commit 2e0197131c
20 changed files with 1030 additions and 74 deletions

View File

@ -8,8 +8,8 @@
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="api" />
<module name="JudgeServer" />
<module name="DataBackup" />
<module name="JudgeServer" />
</profile>
</annotationProcessing>
</component>

View File

@ -105,8 +105,16 @@ public class StartupRunner implements CommandLineRunner {
@Value("${CF_ACCOUNT_PASSWORD_LIST:}")
private List<String> cfPasswordList;
@Value("${spring.profiles.active}")
private String profile;
@Override
public void run(String... args) throws Exception {
if (profile.equals("dev")){
return;
}
// 动态修改nacos上的配置文件
if (judgeToken.equals("default")) {
configVo.setJudgeToken(IdUtil.fastSimpleUUID());

View File

@ -67,10 +67,18 @@ public class CommonController {
@GetMapping("/get-all-problem-tags")
public CommonResult getAllProblemTagsList() {
List<Tag> list = tagService.list();
if (list != null) {
return CommonResult.successResponse(list, "获取题目标签列表成功!");
public CommonResult getAllProblemTagsList(@RequestParam(value = "oj",defaultValue = "ME")String oj) {
List<Tag> tagList;
oj = oj.toUpperCase();
if (oj.equals("ALL")){
tagList = tagService.list();
}else {
QueryWrapper<Tag> tagQueryWrapper = new QueryWrapper<>();
tagQueryWrapper.eq( "oj", oj);
tagList = tagService.list(tagQueryWrapper);
}
if (tagList != null) {
return CommonResult.successResponse(tagList, "获取题目标签列表成功!");
} else {
return CommonResult.errorResponse("获取题目标签列表失败!");
}

View File

@ -132,7 +132,7 @@ public class JudgeController {
return CommonResult.errorResponse("比赛未开始,不可提交!");
}
// 需要检查是否有权限在当前比赛进行提交
CommonResult checkResult = contestService.checkJudgeAuth(judgeDto.getProtectContestPwd(), contest, userRolesVo.getUid());
CommonResult checkResult = contestService.checkJudgeAuth(contest, userRolesVo.getUid());
if (checkResult != null) {
return checkResult;
}

View File

@ -25,8 +25,6 @@ public class ToJudgeDto {
@NotBlank(message = "提交的比赛id所属不能为空若并非比赛提交请设置为0")
private Long cid;
private String protectContestPwd;
private Boolean isRemote;
}

View File

@ -25,5 +25,5 @@ public interface ContestService extends IService<Contest> {
Boolean isSealRank(String uid, Contest contest, Boolean forceRefresh, Boolean isRoot);
CommonResult checkJudgeAuth(String protectContestPwd, Contest contest, String uid);
CommonResult checkJudgeAuth(Contest contest, String uid);
}

View File

@ -3,9 +3,7 @@ package top.hcode.hoj.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.StringUtils;
import top.hcode.hoj.common.result.CommonResult;
import top.hcode.hoj.pojo.dto.ToJudgeDto;
import top.hcode.hoj.pojo.entity.ContestRegister;
import top.hcode.hoj.pojo.vo.ContestVo;
import top.hcode.hoj.pojo.entity.Contest;
@ -101,7 +99,7 @@ public class ContestServiceImpl extends ServiceImpl<ContestMapper, Contest> impl
}
@Override
public CommonResult checkJudgeAuth(String protectContestPwd, Contest contest, String uid) {
public CommonResult checkJudgeAuth(Contest contest, String uid) {
if (contest.getAuth().intValue() == Constants.Contest.AUTH_PRIVATE.getCode() ||
contest.getAuth().intValue() == Constants.Contest.AUTH_PROTECT.getCode()) {
@ -110,15 +108,7 @@ public class ContestServiceImpl extends ServiceImpl<ContestMapper, Contest> impl
ContestRegister register = contestRegisterService.getOne(queryWrapper, false);
// 如果还没注册
if (register == null) {
// 如果提交附带密码不为空且跟当前比赛的密码相等则进行注册并且此次提交可以提交,同时注册到数据库
if (!StringUtils.isEmpty(protectContestPwd)) {
return CommonResult.errorResponse("对不起,提交失败!请您先成功注册该比赛!", CommonResult.STATUS_ACCESS_DENIED);
} else if (contest.getPwd().equals(protectContestPwd)) {
contestRegisterService.saveOrUpdate(new ContestRegister().setUid(uid).setCid(contest.getId()));
return null;
} else {
return CommonResult.errorResponse("对不起,比赛密码错误,提交代码失败!", CommonResult.STATUS_FAIL);
}
return CommonResult.errorResponse("对不起,请你先注册该比赛,提交代码失败!", CommonResult.STATUS_FAIL);
}
}
return null;

View File

@ -102,10 +102,11 @@ public class ProblemServiceImpl extends ServiceImpl<ProblemMapper, Problem> impl
Map<String, Object> map = new HashMap<>();
map.put("pid", pid);
//查询出原来题目的关联表数据
List<ProblemTag> oldProblemTags = (List<ProblemTag>) problemTagService.listByMap(map);
List<ProblemLanguage> oldProblemLanguages = (List<ProblemLanguage>) problemLanguageService.listByMap(map);
List<ProblemCase> oldProblemCases = (List<ProblemCase>) problemCaseService.listByMap(map);
List<CodeTemplate> oldProblemTemplate = (List<CodeTemplate>) codeTemplateService.listByMap(map);
map.put("oj", "ME");
List<ProblemTag> oldProblemTags = (List<ProblemTag>) problemTagService.listByMap(map);
Map<Long, Integer> mapOldPT = new HashMap<>();
Map<Long, Integer> mapOldPL = new HashMap<>();
@ -139,6 +140,7 @@ public class ProblemServiceImpl extends ServiceImpl<ProblemMapper, Problem> impl
List<ProblemTag> problemTagList = new LinkedList<>(); // 存储新的problem_tag表数据
for (Tag tag : problemDto.getTags()) {
if (tag.getId() == null) { // 没有主键表示为新添加的标签
tag.setOj("ME");
boolean addTagResult = tagService.save(tag);
if (addTagResult) {
problemTagList.add(new ProblemTag()
@ -395,10 +397,12 @@ public class ProblemServiceImpl extends ServiceImpl<ProblemMapper, Problem> impl
List<ProblemTag> problemTagList = new LinkedList<>();
for (Tag tag : problemDto.getTags()) {
if (tag.getId() == null) { //id为空 表示为原tag表中不存在的 插入后可以获取到对应的tagId
tag.setOj("ME");
try {
tagService.save(tag);
} catch (Exception ignored) {
tag = tagService.getOne(new QueryWrapper<Tag>().eq("name", tag.getName()));
tag = tagService.getOne(new QueryWrapper<Tag>().eq("name", tag.getName())
.eq("oj", "ME"));
}
}
problemTagList.add(new ProblemTag().setTid(tag.getId()).setPid(pid));
@ -563,7 +567,6 @@ public class ProblemServiceImpl extends ServiceImpl<ProblemMapper, Problem> impl
}
boolean addProblemLanguageResult = problemLanguageService.saveOrUpdateBatch(problemLanguageList);
boolean addProblemTagResult = true;
List<Tag> addTagList = remoteProblemInfo.getTagList();
@ -572,19 +575,24 @@ public class ProblemServiceImpl extends ServiceImpl<ProblemMapper, Problem> impl
HashMap<String, Tag> tagFlag = new HashMap<>();
if (addTagList != null && addTagList.size() > 0) {
List<Tag> tagList = tagService.list();
QueryWrapper<Tag> tagQueryWrapper = new QueryWrapper<>();
tagQueryWrapper.eq("oj", OJName);
List<Tag> tagList = tagService.list(tagQueryWrapper);
// 已存在的tag不进行添加
for (Tag hasTag : tagList) {
tagFlag.put(hasTag.getName(), hasTag);
tagFlag.put(hasTag.getName().toUpperCase(), hasTag);
}
for (Tag tmp : addTagList) {
if (tagFlag.get(tmp.getName()) == null) {
Tag tag = tagFlag.get(tmp.getName().toUpperCase());
if (tag == null) {
tmp.setOj(OJName);
needAddTagList.add(tmp);
} else {
needAddTagList.add(tagFlag.get(tmp.getName()));
needAddTagList.add(tag);
}
}
tagService.saveOrUpdateBatch(needAddTagList);
List<ProblemTag> problemTagList = new LinkedList<>();
for (Tag tmp : needAddTagList) {
problemTagList.add(new ProblemTag().setTid(tmp.getId()).setPid(problem.getId()));
@ -596,6 +604,7 @@ public class ProblemServiceImpl extends ServiceImpl<ProblemMapper, Problem> impl
Tag OJNameTag = tagService.getOne(tagQueryWrapper, false);
if (OJNameTag == null) {
OJNameTag = new Tag();
OJNameTag.setOj(OJName);
OJNameTag.setName(OJName);
tagService.saveOrUpdate(OJNameTag);
}

View File

@ -0,0 +1,74 @@
spring:
profiles: dev
# 配置文件上传限制
servlet:
multipart:
max-file-size: 128MB
max-request-size: 128MB
redis:
host: 127.0.0.1
port: 6379
timeout: 60000
jedis:
pool:
min-idle: 10 #连接池中的最小空闲连接
max-idle: 50 #连接池中的最大空闲连接
max-active: 200 #连接池最大连接数(使用负值表示没有限制)
max-wait: -1 #连接池最大阻塞等待时间(使用负值表示没有限制)
password: 123456
datasource:
username: root
password: 123456
url: jdbc:mysql://127.0.0.1:3306/hoj?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true
driver-class-name: com.mysql.cj.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
initial-size: 10 # 初始化时建立物理连接的个数。初始化发生在显示调用init方法或者第一次getConnection时
min-idle: 20 # 最小连接池数量
maxActive: 200 # 最大连接池数量
maxWait: 60000 # 获取连接时最大等待时间单位毫秒。配置了maxWait之后缺省启用公平锁并发效率会有所下降如果需要可以通过配置
timeBetweenEvictionRunsMillis: 60000 # 关闭空闲连接的检测时间间隔.Destroy线程会检测连接的间隔时间如果连接空闲时间大于等于minEvictableIdleTimeMillis则关闭物理连接。
minEvictableIdleTimeMillis: 300000 # 连接的最小生存时间.连接保持空闲而不被驱逐的最小时间
validationQuery: SELECT 1 FROM DUAL # 验证数据库服务可用性的sql.用来检测连接是否有效的sql 因数据库方言而差, 例如 oracle 应该写成 SELECT 1 FROM DUAL
testWhileIdle: true # 申请连接时检测空闲时间,根据空闲时间再检测连接是否有效.建议配置为true不影响性能并且保证安全性。申请连接的时候检测如果空闲时间大于timeBetweenEvictionRun
testOnBorrow: false # 申请连接时直接检测连接是否有效.申请连接时执行validationQuery检测连接是否有效做了这个配置会降低性能。
testOnReturn: false # 归还连接时检测连接是否有效.归还连接时执行validationQuery检测连接是否有效做了这个配置会降低性能。
poolPreparedStatements: true # 开启PSCache
maxPoolPreparedStatementPerConnectionSize: 20 #设置PSCache值
connectionErrorRetryAttempts: 3 # 连接出错后再尝试连接三次
breakAfterAcquireFailure: true # 数据库服务宕机自动重连机制
timeBetweenConnectErrorMillis: 300000 # 连接出错后重试时间间隔
asyncInit: true # 异步初始化策略
remove-abandoned: true # 是否自动回收超时连接
remove-abandoned-timeout: 1800 # 超时时间(以秒数为单位)
transaction-query-timeout: 6000 # 事务超时时间
filters: stat,wall,log4j #数据库日志
connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500
mybatis-plus:
mapper-locations: classpath*:top/hcode/hoj/dao/xml/**Mapper.xml
type-aliases-package: top.hcode.hoj.pojo.entity
shiro-redis:
enabled: true
redis-manager:
host: 127.0.0.1:6379
password: 123456
ribbon:
# 指的是建立连接所用的时间,适用于网络状况正常的情况下,俩端连接所用的时间 单位是秒
ReadTimeout: 10000
# 指的是建立连接后从服务器读取到可用资源的时间
ConnectTimeout: 30000
logging:
level:
com:
alibaba:
nacos:
client:
naming: info
root: info

View File

@ -1,13 +1,3 @@
spring:
profiles:
active: prod
---
# 消费者将要去访问的微服务名称注册成功进入nacos的微服务提供者
service-url:
hoj-judge-server: http://hoj-judgeserver # 服务访问base_url
name: hoj-judgeserver # 服务名
spring:
profiles: prod
# 配置文件上传限制
@ -83,5 +73,4 @@ logging:
naming: error
root: error
config: classpath:logback-spring.xml
path: /hoj/log/backend/hoj_backend.log
path: /hoj/log/backend/hoj_backend.log

View File

@ -32,3 +32,8 @@ spring:
# ${spring.application.name}-${spring.profile.active}.${spring.cloud.naces.config.file-extension}
# ${spring.cloud.nacos.config.prefix}-${spring.profile.active}.${spring.cloud.naces.config.file-extension}
# hoj-prod.yml
# 消费者将要去访问的微服务名称注册成功进入nacos的微服务提供者
service-url:
hoj-judge-server: http://hoj-judgeserver # 服务访问base_url
name: hoj-judgeserver # 服务名

View File

@ -38,6 +38,9 @@ public class Tag implements Serializable {
@ApiModelProperty(value = "标签颜色")
private String color;
@ApiModelProperty(value = "标签所属oj")
private String oj;
@TableField(fill = FieldFill.INSERT)
private Date gmtCreate;

View File

@ -0,0 +1,5 @@
2021-06-15 10:39:00 [http-nio-6688-exec-1] ERROR hoj - 系统通用异常-------------->Transaction rolled back because it has been marked as rollback-only
2021-06-15 10:40:56 [http-nio-6688-exec-1] ERROR hoj - 系统通用异常-------------->Transaction rolled back because it has been marked as rollback-only
2021-06-15 10:42:54 [http-nio-6688-exec-1] ERROR hoj - 系统通用异常-------------->Transaction rolled back because it has been marked as rollback-only
2021-06-15 10:45:25 [http-nio-6688-exec-1] ERROR hoj - 系统通用异常-------------->Transaction rolled back because it has been marked as rollback-only
2021-06-15 10:47:26 [http-nio-6688-exec-1] ERROR hoj - 系统通用异常-------------->Transaction rolled back because it has been marked as rollback-only

View File

@ -0,0 +1,838 @@
2021-06-15 10:35:29 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:35:29 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:35:29 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:35:29 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:35:29 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:35:29 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:35:30 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:35:30 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:35:31 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:35:31 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:35:31 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 32ms. Found 0 Redis repository interfaces.
2021-06-15 10:35:31 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:35:31 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c5bcda6e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$685e0c8d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$aa32f227] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$c7f25596] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$68d9f829] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$108ad4b9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfcfa68e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:35:32 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$5f646add] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$a1da800a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:34 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:34 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:34 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:35:34 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:35:34 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:35:34 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:35:34 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:35:34 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:35:34 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 4911 ms
2021-06-15 10:35:36 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:35:36 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:35:36 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:35:36 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:35:39 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:35:41 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:35:41 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:35:41 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:35:41 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:35:41 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:35:41 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:35:41 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:35:44 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:35:44 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:35:44 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:35:44 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:35:47 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:35:47 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:35:47 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 23.37 seconds (JVM running for 25.24)
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:35:47 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:35:47 [RMI TCP Connection(8)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:35:47 [RMI TCP Connection(8)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:35:47 [RMI TCP Connection(8)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 11 ms
2021-06-15 10:35:50 [RMI TCP Connection(10)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:35:52 [RMI TCP Connection(10)-169.254.120.155] WARN o.s.boot.actuate.redis.RedisHealthIndicator - Redis health check failed
org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:281)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:475)
at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:134)
at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:97)
at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:84)
at org.springframework.boot.actuate.redis.RedisHealthIndicator.doHealthCheck(RedisHealthIndicator.java:55)
at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82)
at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37)
at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:81)
at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:38)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:108)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateHealth(HealthEndpointSupport.java:119)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:105)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:83)
at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:70)
at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:75)
at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:65)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:282)
at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:77)
at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60)
at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:121)
at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:96)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1468)
at javax.management.remote.rmi.RMIConnectionImpl.access$300(RMIConnectionImpl.java:76)
at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1309)
at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1401)
at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:829)
at sun.reflect.GeneratedMethodAccessor144.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:357)
at sun.rmi.transport.Transport$1.run(Transport.java:200)
at sun.rmi.transport.Transport$1.run(Transport.java:197)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:196)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:573)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:834)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:688)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:687)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
at redis.clients.jedis.util.Pool.getResource(Pool.java:59)
at redis.clients.jedis.JedisPool.getResource(JedisPool.java:234)
at redis.clients.jedis.JedisPool.getResource(JedisPool.java:15)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:271)
... 48 common frames omitted
Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Failed connecting to host 129.204.177.72:6379
at redis.clients.jedis.Connection.connect(Connection.java:204)
at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:100)
at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1866)
at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:117)
at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:889)
at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:424)
at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:349)
at redis.clients.jedis.util.Pool.getResource(Pool.java:50)
... 51 common frames omitted
Caused by: java.net.SocketTimeoutException: connect timed out
at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at redis.clients.jedis.Connection.connect(Connection.java:181)
... 58 common frames omitted
2021-06-15 10:37:11 [http-nio-6688-exec-5] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 10:37:49 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:37:49 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:37:49 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:37:49 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:37:49 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:37:49 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:37:49 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:37:49 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:37:50 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:37:50 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:37:50 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 36ms. Found 0 Redis repository interfaces.
2021-06-15 10:37:50 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:37:50 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$ef620fc8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$920341e7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$d3d82781] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$f1978af0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$927f2d83] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$3a300a13] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f974dbe8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:37:51 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$8909a037] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$cb7fb564] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:52 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:52 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:52 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:52 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:37:52 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:37:52 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:37:52 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:37:52 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:37:53 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:37:53 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 3803 ms
2021-06-15 10:37:55 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:37:55 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:37:55 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:37:55 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:37:57 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:37:59 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:37:59 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:37:59 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:37:59 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:37:59 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:37:59 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:38:00 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:38:02 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:38:02 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:38:02 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:38:02 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:38:04 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:38:04 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:38:04 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 21.662 seconds (JVM running for 23.433)
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:38:04 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:38:05 [RMI TCP Connection(3)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:38:05 [RMI TCP Connection(3)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:38:05 [RMI TCP Connection(3)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 9 ms
2021-06-15 10:38:07 [RMI TCP Connection(5)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:38:22 [http-nio-6688-exec-1] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 10:38:27 [http-nio-6688-exec-7] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoj-data-backup -> [{"instanceId":"169.254.147.119#6688#DEFAULT#DEFAULT_GROUP@@hoj-data-backup","ip":"169.254.147.119","port":6688,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-data-backup","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-06-15 10:38:27 [http-nio-6688-exec-6] INFO com.alibaba.nacos.client.naming - new ips(3) service: DEFAULT_GROUP@@hoj-judgeserver -> [{"instanceId":"49.235.91.218#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"49.235.91.218","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-2","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"120.79.64.26#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"120.79.64.26","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"5","judgeName":"judger-3","maxRemoteTaskNum":"10","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"39.108.148.172#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"39.108.148.172","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-1","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-06-15 10:38:27 [http-nio-6688-exec-7] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoj-data-backup -> [{"instanceId":"169.254.147.119#6688#DEFAULT#DEFAULT_GROUP@@hoj-data-backup","ip":"169.254.147.119","port":6688,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-data-backup","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-06-15 10:38:27 [http-nio-6688-exec-6] INFO com.alibaba.nacos.client.naming - current ips:(3) service: DEFAULT_GROUP@@hoj-judgeserver -> [{"instanceId":"49.235.91.218#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"49.235.91.218","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-2","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"120.79.64.26#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"120.79.64.26","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"5","judgeName":"judger-3","maxRemoteTaskNum":"10","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"39.108.148.172#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"39.108.148.172","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-1","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}]
2021-06-15 10:40:16 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:40:16 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:40:16 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:40:16 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:40:16 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:40:16 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:40:17 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:40:17 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:40:17 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:40:17 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:40:17 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 34ms. Found 0 Redis repository interfaces.
2021-06-15 10:40:17 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:40:18 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$5cd012dc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$ff7144fb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$41462a95] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$5f058e04] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$ffed3097] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$a79e0d27] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$66e2defc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:18 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:40:19 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$f677a34b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$38edb878] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:19 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:20 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:20 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:20 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:20 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:40:20 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:40:20 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:40:20 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:40:20 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:40:20 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:40:20 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 3970 ms
2021-06-15 10:40:23 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:40:23 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:40:23 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:40:23 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:40:25 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:40:27 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:40:27 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:40:27 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:40:27 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:40:27 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:40:27 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:40:27 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:40:30 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:40:30 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:40:30 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:40:30 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:40:32 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:40:32 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:40:32 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 21.39 seconds (JVM running for 23.15)
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:40:32 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:40:34 [RMI TCP Connection(1)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:40:34 [RMI TCP Connection(3)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:40:34 [RMI TCP Connection(3)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:40:34 [RMI TCP Connection(3)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 20 ms
2021-06-15 10:40:54 [http-nio-6688-exec-1] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 10:42:25 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:42:25 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:42:25 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:42:25 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:42:25 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:42:25 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:42:26 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:42:26 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:42:26 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:42:26 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:42:26 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 32ms. Found 0 Redis repository interfaces.
2021-06-15 10:42:26 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:42:26 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$d5870830] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$78283a4f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$b9fd1fe9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$d7bc8358] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$78a425eb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:26 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$2055027b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$df99d450] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:42:27 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$6f2e989f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$b1a4adcc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:27 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:28 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:28 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:28 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:28 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:42:29 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:42:29 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:42:29 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:42:29 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:42:29 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:42:29 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 4021 ms
2021-06-15 10:42:31 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:42:31 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:42:31 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:42:31 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:42:34 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:42:35 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:42:35 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:42:35 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:42:35 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:42:35 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:42:35 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:42:36 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:42:38 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:42:38 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:42:39 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:42:39 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:42:41 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:42:41 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:42:41 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 21.508 seconds (JVM running for 23.255)
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:42:41 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:42:42 [RMI TCP Connection(2)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:42:42 [RMI TCP Connection(2)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:42:42 [RMI TCP Connection(2)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 13 ms
2021-06-15 10:42:43 [RMI TCP Connection(1)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:42:52 [http-nio-6688-exec-1] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 10:44:47 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:44:47 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:44:47 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:44:47 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:44:47 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:44:47 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:44:48 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:44:48 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:44:48 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:44:48 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:44:48 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 34ms. Found 0 Redis repository interfaces.
2021-06-15 10:44:49 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:44:49 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$9f35cb4e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$41d6fd6d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$83abe307] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$a16b4676] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$4252e909] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$ea03c599] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$a948976e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:49 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:44:50 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$38dd5bbd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$7b5370ea] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:50 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:51 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:44:51 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:44:51 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:44:51 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:44:51 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:44:51 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:44:51 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 3930 ms
2021-06-15 10:44:54 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:44:54 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:44:54 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:44:54 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:44:56 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:44:58 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:44:58 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:44:58 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:44:58 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:44:58 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:44:58 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:44:59 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:45:02 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:45:02 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:45:02 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:45:02 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:45:04 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:45:04 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:45:04 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 22.882 seconds (JVM running for 24.606)
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:45:04 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:45:05 [RMI TCP Connection(2)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:45:05 [RMI TCP Connection(2)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:45:05 [RMI TCP Connection(2)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 15 ms
2021-06-15 10:45:07 [RMI TCP Connection(1)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:45:22 [http-nio-6688-exec-1] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 10:47:00 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:47:00 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:47:00 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:47:00 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:47:00 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:47:00 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:47:01 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:47:01 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:47:01 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:47:01 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:47:01 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 36ms. Found 0 Redis repository interfaces.
2021-06-15 10:47:01 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:47:01 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$bf28055c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$61c9377b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$a39e1d15] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$c15d8084] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$62452317] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$9f5ffa7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$c93ad17c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:02 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:47:03 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$58cf95cb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$9b45aaf8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:03 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:04 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:04 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:04 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:04 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:47:04 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:47:04 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:47:04 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:47:04 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:47:04 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:47:04 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 4034 ms
2021-06-15 10:47:06 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:47:06 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:47:06 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:47:06 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:47:09 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:47:10 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:47:10 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:47:10 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:47:10 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:47:10 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:47:10 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:47:11 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:47:14 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:47:14 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:47:14 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:47:14 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:47:16 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:47:16 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:47:16 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 21.732 seconds (JVM running for 23.499)
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:47:16 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:47:17 [RMI TCP Connection(1)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:47:17 [RMI TCP Connection(1)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:47:17 [RMI TCP Connection(1)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 12 ms
2021-06-15 10:47:19 [RMI TCP Connection(2)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:47:24 [http-nio-6688-exec-1] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 10:54:20 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 10:54:21 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 10:54:21 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 10:54:21 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 10:54:21 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 10:54:21 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 10:54:21 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 10:54:21 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 10:54:22 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 10:54:22 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 10:54:22 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 30ms. Found 0 Redis repository interfaces.
2021-06-15 10:54:22 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 10:54:22 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f92d9811] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$9bceca30] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$dda3afca] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$fb631339] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$9c4ab5cc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$43fb925c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$3406431] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:22 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 10:54:23 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$92d52880] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$d54b3dad] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:23 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:24 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:24 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:24 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:24 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 10:54:25 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 10:54:25 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 10:54:25 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 10:54:25 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 10:54:25 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 10:54:25 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 4159 ms
2021-06-15 10:54:27 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:54:27 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:54:27 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 10:54:27 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 10:54:30 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:54:31 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 10:54:31 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 10:54:31 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:54:31 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:54:31 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 10:54:31 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 10:54:32 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 10:54:34 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:54:34 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 10:54:34 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 10:54:34 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 10:54:36 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 10:54:36 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 10:54:36 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 21.354 seconds (JVM running for 23.084)
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 10:54:36 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 10:54:38 [RMI TCP Connection(4)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 10:54:38 [RMI TCP Connection(4)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 10:54:38 [RMI TCP Connection(4)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 10 ms
2021-06-15 10:54:39 [RMI TCP Connection(3)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 10:55:02 [http-nio-6688-exec-1] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 11:29:30 [main] INFO c.a.n.client.config.impl.LocalConfigInfoProcessor - LOCAL_SNAPSHOT_PATH:C:\Users\HZH990730\nacos\config
2021-06-15 11:29:30 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj] & group[DEFAULT_GROUP]
2021-06-15 11:29:30 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[hoj.yml] & group[DEFAULT_GROUP]
2021-06-15 11:29:30 [main] INFO com.alibaba.nacos.client.config.utils.JvmUtil - isMultiInstance:false
2021-06-15 11:29:30 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-hoj-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-hoj,DEFAULT_GROUP'}]
2021-06-15 11:29:30 [main] INFO top.hcode.hoj.DataBackupApplication - The following profiles are active: dev
2021-06-15 11:29:31 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
2021-06-15 11:29:31 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
2021-06-15 11:29:31 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
2021-06-15 11:29:31 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2021-06-15 11:29:31 [main] INFO o.s.d.r.config.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 46ms. Found 0 Redis repository interfaces.
2021-06-15 11:29:31 [main] WARN o.springframework.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
2021-06-15 11:29:32 [main] INFO o.springframework.cloud.context.scope.GenericScope - BeanFactory id=e7285371-5509-3c57-941b-cbf9efc0c5cb
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.config.web.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$ba55523f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'asyncTaskConfig' of type [top.hcode.hoj.config.AsyncTaskConfig$$EnhancerBySpringCGLIB$$5cf6845e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConfig' of type [top.hcode.hoj.config.RedisConfig$$EnhancerBySpringCGLIB$$9ecb69f8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig' of type [top.hcode.hoj.config.RedisAutoConfig$$EnhancerBySpringCGLIB$$bc8acd67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisAutoConfig.JedisConf' of type [top.hcode.hoj.config.RedisAutoConfig$JedisConf$$EnhancerBySpringCGLIB$$5d726ffa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisPool' of type [redis.clients.jedis.JedisPoolConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jedisConfig' of type [org.springframework.data.redis.connection.RedisStandaloneConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.jedis.JedisConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisUtils' of type [top.hcode.hoj.utils.RedisUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtUtils' of type [top.hcode.hoj.utils.JwtUtils] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'mybatisPlusConfig' of type [top.hcode.hoj.config.MybatisPlusConfig$$EnhancerBySpringCGLIB$$5234c8a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'optimisticLockerInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'paginationInterceptor' of type [com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:32 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' of type [com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$c4681e5f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'myMetaObjectConfig' of type [top.hcode.hoj.config.MyMetaObjectConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.RoleAuth.
2021-06-15 11:29:33 [main] WARN c.b.mybatisplus.core.metadata.TableInfoHelper - Warn: Could not find @TableId in Class: top.hcode.hoj.pojo.entity.UserRole.
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionFactory' of type [org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sqlSessionTemplate' of type [org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoMapper' of type [com.sun.proxy.$Proxy122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userInfoServiceImpl' of type [top.hcode.hoj.service.impl.UserInfoServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'jwtFilter' of type [top.hcode.hoj.shiro.JwtFilter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroConfig' of type [top.hcode.hoj.config.ShiroConfig$$EnhancerBySpringCGLIB$$53fce2ae] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'userRoleMapper' of type [com.sun.proxy.$Proxy124] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'roleAuthMapper' of type [com.sun.proxy.$Proxy126] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'accountRealm' of type [top.hcode.hoj.shiro.AccountRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.redis-manager-org.crazycake.shiro.RedisManagerProperties' of type [org.crazycake.shiro.RedisManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.cache-manager-org.crazycake.shiro.CacheManagerProperties' of type [org.crazycake.shiro.CacheManagerProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiro-redis.session-dao-org.crazycake.shiro.RedisSessionDAOProperties' of type [org.crazycake.shiro.RedisSessionDAOProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.crazycake.shiro.ShiroRedisAutoConfiguration' of type [org.crazycake.shiro.ShiroRedisAutoConfiguration$$EnhancerBySpringCGLIB$$9672f7db] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisSessionDAO' of type [org.crazycake.shiro.RedisSessionDAO] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'sessionManager' of type [org.apache.shiro.web.session.mgt.DefaultWebSessionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:33 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'redisCacheManager' of type [org.crazycake.shiro.RedisCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:35 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:35 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:35 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'shiroFilterChainDefinition' of type [org.apache.shiro.spring.web.config.DefaultShiroFilterChainDefinition] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:35 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-06-15 11:29:35 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 6688 (http)
2021-06-15 11:29:35 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-6688"]
2021-06-15 11:29:35 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2021-06-15 11:29:35 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.33]
2021-06-15 11:29:35 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2021-06-15 11:29:35 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 5595 ms
2021-06-15 11:29:38 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 11:29:38 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 11:29:38 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Environment :null
2021-06-15 11:29:38 [main] INFO com.alibaba.nacos.client.naming - initializer namespace from System Property :null
2021-06-15 11:29:41 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 11:29:42 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService
2021-06-15 11:29:42 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor - Initializing ExecutorService 'judgeTaskAsyncPool'
2021-06-15 11:29:42 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 11:29:42 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 11:29:42 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2021-06-15 11:29:42 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2021-06-15 11:29:43 [main] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
2021-06-15 11:29:45 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 11:29:45 [main] INFO o.s.b.actuate.endpoint.web.EndpointLinksResolver - Exposing 2 endpoint(s) beneath base path '/actuator'
2021-06-15 11:29:46 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-6688"]
2021-06-15 11:29:46 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 6688 (http) with context path ''
2021-06-15 11:29:48 [main] INFO org.springframework.cloud.commons.util.InetUtils - Cannot determine local hostname
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.naming - [BEAT] adding beat: BeatInfo{port=6688, ip='169.254.147.119', weight=1.0, serviceName='DEFAULT_GROUP@@hoj-data-backup', cluster='DEFAULT', metadata={preserved.register.source=SPRING_CLOUD}, scheduled=false, period=5000, stopped=false} to beat map.
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.naming - [REGISTER-SERVICE] public registering service DEFAULT_GROUP@@hoj-data-backup with instance: Instance{instanceId='null', ip='169.254.147.119', port=6688, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={preserved.register.source=SPRING_CLOUD}}
2021-06-15 11:29:48 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry - nacos registry, DEFAULT_GROUP hoj-data-backup 169.254.147.119:6688 register finished
2021-06-15 11:29:48 [main] INFO top.hcode.hoj.DataBackupApplication - Started DataBackupApplication in 23.855 seconds (JVM running for 25.673)
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj-dev.yml+DEFAULT_GROUP
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj-dev.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj+DEFAULT_GROUP
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj, group=DEFAULT_GROUP, cnt=1
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.config.impl.ClientWorker - [fixed-129.204.177.72_8848] [subscribe] hoj.yml+DEFAULT_GROUP
2021-06-15 11:29:48 [main] INFO com.alibaba.nacos.client.config.impl.CacheData - [fixed-129.204.177.72_8848] [add-listener] ok, tenant=, dataId=hoj.yml, group=DEFAULT_GROUP, cnt=1
2021-06-15 11:29:49 [RMI TCP Connection(3)-169.254.120.155] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-06-15 11:29:49 [RMI TCP Connection(3)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2021-06-15 11:29:49 [RMI TCP Connection(3)-169.254.120.155] INFO org.springframework.web.servlet.DispatcherServlet - Completed initialization in 14 ms
2021-06-15 11:29:50 [RMI TCP Connection(4)-169.254.120.155] INFO com.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
2021-06-15 11:33:08 [http-nio-6688-exec-2] INFO o.a.s.session.mgt.AbstractValidatingSessionManager - Enabling session validation scheduler...
2021-06-15 11:35:18 [http-nio-6688-exec-9] INFO com.alibaba.nacos.client.naming - new ips(1) service: DEFAULT_GROUP@@hoj-data-backup -> [{"instanceId":"169.254.147.119#6688#DEFAULT#DEFAULT_GROUP@@hoj-data-backup","ip":"169.254.147.119","port":6688,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-data-backup","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
2021-06-15 11:35:18 [http-nio-6688-exec-10] INFO com.alibaba.nacos.client.naming - new ips(3) service: DEFAULT_GROUP@@hoj-judgeserver -> [{"instanceId":"49.235.91.218#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"49.235.91.218","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-2","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"120.79.64.26#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"120.79.64.26","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"5","judgeName":"judger-3","maxRemoteTaskNum":"10","preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"39.108.148.172#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"39.108.148.172","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-1","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
2021-06-15 11:35:18 [http-nio-6688-exec-9] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DEFAULT_GROUP@@hoj-data-backup -> [{"instanceId":"169.254.147.119#6688#DEFAULT#DEFAULT_GROUP@@hoj-data-backup","ip":"169.254.147.119","port":6688,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-data-backup","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
2021-06-15 11:35:18 [http-nio-6688-exec-10] INFO com.alibaba.nacos.client.naming - current ips:(3) service: DEFAULT_GROUP@@hoj-judgeserver -> [{"instanceId":"49.235.91.218#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"49.235.91.218","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-2","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"120.79.64.26#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"120.79.64.26","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"5","judgeName":"judger-3","maxRemoteTaskNum":"10","preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"39.108.148.172#8088#DEFAULT#DEFAULT_GROUP@@hoj-judgeserver","ip":"39.108.148.172","port":8088,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@hoj-judgeserver","metadata":{"maxTaskNum":"3","judgeName":"hoj-judger-1","maxRemoteTaskNum":"6","preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]

View File

@ -189,8 +189,12 @@ const ojApi = {
})
},
// Problem List页的相关请求
getProblemTagList () {
return ajax('/api/get-all-problem-tags', 'get')
getProblemTagList (oj) {
return ajax('/api/get-all-problem-tags', 'get',{
params:{
oj
}
})
},
getProblemList (limit, searchParams) {
let params = {
@ -743,8 +747,12 @@ const adminApi = {
}
})
},
admin_getAllProblemTagList () {
return ajax('/api/get-all-problem-tags', 'get')
admin_getAllProblemTagList (oj) {
return ajax('/api/get-all-problem-tags', 'get',{
params: {
oj
}
})
},
admin_getProblemTags(pid){

View File

@ -4,7 +4,7 @@ import { CONTEST_STATUS, USER_TYPE, CONTEST_TYPE } from '@/common/constants'
import time from '@/common/time'
const state = {
now: moment(),
intoAccess: true, // 比赛进入权限
intoAccess: false, // 比赛进入权限
submitAccess:false, // 保护比赛的提交权限
forceUpdate: false,
contest: {

View File

@ -695,7 +695,7 @@ export default {
this.mode = 'add';
}
api
.admin_getAllProblemTagList()
.admin_getAllProblemTagList('ME')
.then((res) => {
this.allTags = res.data.data;
for (let tag of res.data.data) {

View File

@ -345,9 +345,9 @@
<el-dialog :visible.sync="submitPwdVisible" width="340px">
<el-form>
<el-form-item label="Please Enter the Contest Protect Password">
<el-form-item :label="$t('m.Enter_the_contest_password')" required>
<el-input
placeholder="Please Enter the Contest Protect Password"
:placeholder="$t('m.Enter_the_contest_password')"
v-model="submitPwd"
show-password
></el-input>
@ -356,7 +356,7 @@
type="primary"
round
style="margin-left:130px"
@click="submitCode"
@click="checkContestPassword"
>
{{ $t('m.Submit') }}
</el-button>
@ -685,6 +685,23 @@ export default {
// 2
this.refreshStatus = setTimeout(checkStatus, 2000);
},
checkContestPassword() {
//
if (!this.submitPwd) {
myMessage.warning(this.$i18n.t('m.Enter_the_contest_password'));
return;
}
api.registerContest(this.contestID + '', this.submitPwd).then(
(res) => {
this.$store.commit('contestSubmitAccess', { submitAccess: true });
this.submitPwdVisible = false;
this.submitCode();
},
(res) => {}
);
},
submitCode() {
if (this.code.trim() === '') {
myMessage.error(this.$i18n.t('m.Code_can_not_be_empty'));
@ -693,13 +710,8 @@ export default {
//
if (!this.canSubmit && this.$route.params.contestID) {
//
if (!this.submitPwd) {
this.submitPwdVisible = true;
return;
} else {
this.submitPwdVisible = false;
}
this.submitPwdVisible = true;
return;
}
this.submissionId = '';
@ -710,7 +722,6 @@ export default {
language: this.language,
code: this.code,
cid: this.contestID,
protectContestPwd: this.submitPwd,
isRemote: this.isRemote,
};
if (this.captchaRequired) {
@ -850,17 +861,11 @@ export default {
beforeRouteLeave(to, from, next) {
//
clearInterval(this.refreshStatus);
storage.set(
buildProblemCodeKey(
this.problemData.problem.problemId,
from.params.contestID
),
{
code: this.code,
language: this.language,
theme: this.theme,
}
);
storage.set(buildProblemCodeKey(this.problemID, from.params.contestID), {
code: this.code,
language: this.language,
theme: this.theme,
});
next();
},
watch: {

View File

@ -232,7 +232,7 @@
</el-card>
<el-card :padding="10" style="margin-top:20px">
<div slot="header" style="text-align: center;">
<span class="taglist-title">{{ $t('m.Tags') }}</span>
<span class="taglist-title">{{ OJName + ' ' + $t('m.Tags') }}</span>
</div>
<el-button
v-for="tag in tagList"
@ -284,7 +284,7 @@ export default {
currentProblemTitle: '',
problemRecord: [],
problemList: [],
limit: 15,
limit: 30,
total: 100,
isGetStatusOk: false,
loadings: {
@ -340,14 +340,14 @@ export default {
this.routeName = this.$route.name;
let query = this.$route.query;
this.query.difficulty = query.difficulty || '';
this.query.oj = query.oj || '';
this.query.oj = query.oj || 'Mine';
this.query.keyword = query.keyword || '';
this.query.tagId = query.tagId || '';
this.query.currentPage = parseInt(query.currentPage) || 1;
if (this.query.currentPage < 1) {
this.query.currentPage = 1;
}
this.getTagList();
this.getTagList(this.query.oj);
this.getProblemList();
},
@ -452,8 +452,11 @@ export default {
}
);
},
getTagList() {
api.getProblemTagList().then(
getTagList(oj) {
if (oj == 'Mine') {
oj = 'ME';
}
api.getProblemTagList(oj).then(
(res) => {
this.tagList = res.data.data;
this.loadings.tag = false;
@ -484,6 +487,9 @@ export default {
},
filterByOJ(oj) {
this.query.oj = oj;
if (oj != 'All') {
this.query.tagId = '';
}
this.query.currentPage = 1;
this.pushRouter();
},
@ -519,6 +525,15 @@ export default {
},
computed: {
...mapGetters(['isAuthenticated']),
OJName() {
if (this.query.oj == 'Mine' || !this.$route.query.oj) {
return this.$i18n.t('m.My_OJ');
} else if (this.query.oj == 'All') {
return this.$i18n.t('m.All');
} else {
return this.query.oj;
}
},
},
watch: {
$route(newVal, oldVal) {

View File

@ -644,6 +644,7 @@ CREATE TABLE `tag` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL COMMENT '标签名字',
`color` varchar(10) DEFAULT NULL COMMENT '标签颜色',
`oj` varchar(255) DEFAULT 'ME' COMMENT '标签所属oj',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`,`name`),