From bc8c77dbbef29d803de65e48f2f298f7c39f338e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B7=B4=E5=8D=AB?= <14240332@qq.com> Date: Mon, 6 Feb 2023 11:23:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E9=AA=8C=E8=AF=81=E7=A0=81?= =?UTF-8?q?=E5=92=8Ctoken=E9=AA=8C=E8=AF=81=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/user/LoginAccount.vue | 34 +- .../system/controller/LoginController.java | 44 +- logs/error-log.html | 66 + logs/jeecgboot-2023-02-06.0.html | 2144 +++++++++++++++++ 4 files changed, 2251 insertions(+), 37 deletions(-) create mode 100644 logs/jeecgboot-2023-02-06.0.html diff --git a/ant-design-vue/src/views/user/LoginAccount.vue b/ant-design-vue/src/views/user/LoginAccount.vue index 1ff9a73..fed0275 100644 --- a/ant-design-vue/src/views/user/LoginAccount.vue +++ b/ant-design-vue/src/views/user/LoginAccount.vue @@ -13,17 +13,17 @@ - - - - - - - - - - - + + + + + + + + + + + @@ -54,10 +54,11 @@ ], password: [{ required: true, message: '请输入密码!', validator: 'click' - }], - inputCode: [{ - required: true, message: '请输入验证码!' }] + //modified by 巴卫 + // inputCode: [{ + // required: true, message: '请输入验证码!' + // }] } } @@ -122,13 +123,14 @@ this.model['username'] = username }, //账号密码登录 + //modified by 巴卫 handleLogin(rememberMe){ - this.validateFields([ 'username', 'password', 'inputCode' ], (err)=>{ + this.validateFields([ 'username', 'password'], (err)=>{ if(!err){ let loginParams = { username: this.model.username, password: this.model.password, - captcha: this.model.inputCode, + // captcha: this.model.inputCode, checkKey: this.currdatetime, remember_me: rememberMe, } diff --git a/linkage-boot/linkage-module-system/linkage-system-biz/src/main/java/org/jeecg/modules/system/controller/LoginController.java b/linkage-boot/linkage-module-system/linkage-system-biz/src/main/java/org/jeecg/modules/system/controller/LoginController.java index 519764a..72ce658 100644 --- a/linkage-boot/linkage-module-system/linkage-system-biz/src/main/java/org/jeecg/modules/system/controller/LoginController.java +++ b/linkage-boot/linkage-module-system/linkage-system-biz/src/main/java/org/jeecg/modules/system/controller/LoginController.java @@ -82,26 +82,27 @@ public class LoginController { //update-begin--Author:scott Date:20190805 for:暂时注释掉密码加密逻辑,有点问题 //update-begin-author:taoyan date:20190828 for:校验验证码 - String captcha = sysLoginModel.getCaptcha(); - if(captcha==null){ - result.error500("验证码无效"); - return result; - } - String lowerCaseCaptcha = captcha.toLowerCase(); - //update-begin-author:taoyan date:2022-9-13 for: VUEN-2245 【漏洞】发现新漏洞待处理20220906 - // 加入密钥作为混淆,避免简单的拼接,被外部利用,用户自定义该密钥即可 - String origin = lowerCaseCaptcha+sysLoginModel.getCheckKey()+jeecgBaseConfig.getSignatureSecret(); - String realKey = Md5Util.md5Encode(origin, "utf-8"); - //update-end-author:taoyan date:2022-9-13 for: VUEN-2245 【漏洞】发现新漏洞待处理20220906 - Object checkCode = redisUtil.get(realKey); - //当进入登录页时,有一定几率出现验证码错误 #1714 - if(checkCode==null || !checkCode.toString().equals(lowerCaseCaptcha)) { - log.warn("验证码错误,key= {} , Ui checkCode= {}, Redis checkCode = {}", sysLoginModel.getCheckKey(), lowerCaseCaptcha, checkCode); - result.error500("验证码错误"); - // 改成特殊的code 便于前端判断 - result.setCode(HttpStatus.PRECONDITION_FAILED.value()); - return result; - } + //modified by 巴卫 +// String captcha = sysLoginModel.getCaptcha(); +// if(captcha==null){ +// result.error500("验证码无效"); +// return result; +// } +// String lowerCaseCaptcha = captcha.toLowerCase(); +// //update-begin-author:taoyan date:2022-9-13 for: VUEN-2245 【漏洞】发现新漏洞待处理20220906 +// // 加入密钥作为混淆,避免简单的拼接,被外部利用,用户自定义该密钥即可 +// String origin = lowerCaseCaptcha+sysLoginModel.getCheckKey()+jeecgBaseConfig.getSignatureSecret(); +// String realKey = Md5Util.md5Encode(origin, "utf-8"); +// //update-end-author:taoyan date:2022-9-13 for: VUEN-2245 【漏洞】发现新漏洞待处理20220906 +// Object checkCode = redisUtil.get(realKey); +// //当进入登录页时,有一定几率出现验证码错误 #1714 +// if(checkCode==null || !checkCode.toString().equals(lowerCaseCaptcha)) { +// log.warn("验证码错误,key= {} , Ui checkCode= {}, Redis checkCode = {}", sysLoginModel.getCheckKey(), lowerCaseCaptcha, checkCode); +// result.error500("验证码错误"); +// // 改成特殊的code 便于前端判断 +// result.setCode(HttpStatus.PRECONDITION_FAILED.value()); +// return result; +// } //update-end-author:taoyan date:20190828 for:校验验证码 //1. 校验用户是否有效 @@ -126,7 +127,8 @@ public class LoginController { //用户登录信息 userInfo(sysUser, result); //update-begin--Author:liusq Date:20210126 for:登录成功,删除redis中的验证码 - redisUtil.del(realKey); + //modified by 巴卫 + //redisUtil.del(realKey); //update-begin--Author:liusq Date:20210126 for:登录成功,删除redis中的验证码 LoginUser loginUser = new LoginUser(); BeanUtils.copyProperties(sysUser, loginUser); diff --git a/logs/error-log.html b/logs/error-log.html index e3b9581..de06f2a 100644 --- a/logs/error-log.html +++ b/logs/error-log.html @@ -1119,3 +1119,69 @@ TD.Exception { background: #A2AEE8; font-family: courier, monospace;} LineOfCaller + + + + Logback Log Messages + + + + +
+

Log session start time Mon Feb 06 11:07:14 CST 2023

+ + + + + + + + + + + + + + + Logback Log Messages + + + + +
+

Log session start time Mon Feb 06 11:17:14 CST 2023

+ +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + + + + + + diff --git a/logs/jeecgboot-2023-02-06.0.html b/logs/jeecgboot-2023-02-06.0.html new file mode 100644 index 0000000..1ed4764 --- /dev/null +++ b/logs/jeecgboot-2023-02-06.0.html @@ -0,0 +1,2144 @@ + + + + Logback Log Messages + + + + +
+

Log session start time Mon Feb 06 11:07:14 CST 2023

+ +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Logback Log Messages + + + + +
+

Log session start time Mon Feb 06 11:17:14 CST 2023

+ +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-06 11:07:14,720HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-06 11:07:14,753Starting LinkageSystemApplication using Java 11.0.6 on DESKTOP-NV2FPM8 with PID 7412 (D:\TTXH\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by 巴卫 in D:\TTXH\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-06 11:07:14,756The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-06 11:07:18,875Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-06 11:07:18,881Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-06 11:07:19,099Finished Spring Data repository scanning in 166 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-06 11:07:19,266 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-06 11:07:19,267 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-06 11:07:19,267 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-06 11:07:19,329register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,329register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,329register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,330register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,330register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,330register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,330register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,330register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,330register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,331register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:07:19,679Bean '(inner bean)#37fca349#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,684Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,686Bean '(inner bean)#37fca349#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,687Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,688Bean '(inner bean)#37fca349#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,688Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,690Bean '(inner bean)#37fca349#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,691Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,692Bean '(inner bean)#37fca349#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,693Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,693Bean '(inner bean)#37fca349#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,694Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,694Bean '(inner bean)#37fca349#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,695Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,695Bean '(inner bean)#37fca349#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,696Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,696Bean '(inner bean)#37fca349#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,697Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,697Bean '(inner bean)#37fca349' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,698Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,711Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,715Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,767Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,767Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,769Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,771Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,772Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,774Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,776Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,791Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,793Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,806Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$572/0x00000008405dfc40] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:19,991Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,144Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,151Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,152Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$c274592d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,539Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,543Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$ccc68205] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,549Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,599Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,663===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-06 11:07:20,666===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-06 11:07:20,681Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,688Bean '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)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,704Bean '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)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,719Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$7650eee4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:20,720Bean '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)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:07:21,181Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-06 11:07:21,181An older version [1.2.16] of the Apache Tomcat Native library is installed, while Tomcat recommends a minimum version of [1.2.30]logDirectJDKLog.java173
INFO2023-02-06 11:07:21,182Loaded Apache Tomcat Native library [1.2.16] using APR version [1.6.3].logDirectJDKLog.java173
INFO2023-02-06 11:07:21,182APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true], UDS [false].logDirectJDKLog.java173
INFO2023-02-06 11:07:21,182APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]logDirectJDKLog.java173
INFO2023-02-06 11:07:22,294OpenSSL successfully initialized [OpenSSL 1.0.2m 2 Nov 2017]logDirectJDKLog.java173
INFO2023-02-06 11:07:22,312Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-06 11:07:22,312Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-06 11:07:22,312Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-06 11:07:22,476Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-06 11:07:22,476Root WebApplicationContext: initialization completed in 7637 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-06 11:07:22,709 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-06 11:07:23,916{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-06 11:07:23,917dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-06 11:07:23,918dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-06 11:07:25,417 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-06 11:07:26,554Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-06 11:07:26,556Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-06 11:07:26,565Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-06 11:07:26,565Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-06 11:07:26,567Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-06 11:07:26,578JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-06 11:07:26,579Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-NV2FPM81675652846556' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-06 11:07:26,579Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-06 11:07:26,579Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-06 11:07:26,579JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@48028e11setJobFactoryQuartzScheduler.java2293
INFO2023-02-06 11:07:27,800 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-06 11:07:29,125Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-06 11:07:29,230 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-06 11:07:30,338Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-06 11:07:30,366Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-06 11:07:32,075Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-06 11:07:32,088Started LinkageSystemApplication in 18.272 seconds (JVM running for 19.602)logStartedStartupInfoLogger.java61
INFO2023-02-06 11:07:32,094 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-06 11:07:32,122 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.45:8080/linkage-boot/ + Swagger文档: http://192.168.0.45:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-06 11:07:32,404Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-06 11:07:32,404Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-06 11:07:32,406Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-06 11:07:33,085Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-06 11:07:33,343Scheduler MyScheduler_$_DESKTOP-NV2FPM81675652846556 started.startQuartzScheduler.java547
INFO2023-02-06 11:10:24,688 用户名: ����Ա,退出成功! logoutLoginController.java193
INFO2023-02-06 11:10:25,131获取验证码,Redis key = 32fde5f1bf2936a919515012018af83f,checkCode = 6vw1randomImageLoginController.java516
INFO2023-02-06 11:10:27,256获取验证码,Redis key = 0ee55a1080c726eadbbe3bf96493e878,checkCode = 8HcbrandomImageLoginController.java516
INFO2023-02-06 11:10:58,088获取验证码,Redis key = 2ccfdad63aa2e65a355be2aad78affc3,checkCode = LHdrrandomImageLoginController.java516
INFO2023-02-06 11:12:47,921获取验证码,Redis key = d15e5e9e6010159e0d8e637193e70fad,checkCode = L1fjrandomImageLoginController.java516
INFO2023-02-06 11:13:56,180获取验证码,Redis key = ff0d44a682d7cb947bf4ad38cfc82ccd,checkCode = lHPerandomImageLoginController.java516
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-06 11:17:14,153HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-06 11:17:14,162Starting LinkageSystemApplication using Java 11.0.6 on DESKTOP-NV2FPM8 with PID 8968 (D:\TTXH\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by 巴卫 in D:\TTXH\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-06 11:17:14,164The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-06 11:17:15,361Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-06 11:17:15,363Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-06 11:17:15,430Finished Spring Data repository scanning in 59 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-06 11:17:15,497 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-06 11:17:15,497 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-06 11:17:15,498 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-06 11:17:15,539register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,539register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,539register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,539register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,540register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,540register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,540register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,540register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,540register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,540register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-06 11:17:15,737Bean '(inner bean)#5dd3727c#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,740Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,741Bean '(inner bean)#5dd3727c#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,741Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,742Bean '(inner bean)#5dd3727c#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,742Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,742Bean '(inner bean)#5dd3727c#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,743Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,743Bean '(inner bean)#5dd3727c#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,744Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,744Bean '(inner bean)#5dd3727c#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,744Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,745Bean '(inner bean)#5dd3727c#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,745Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,746Bean '(inner bean)#5dd3727c#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,746Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,746Bean '(inner bean)#5dd3727c#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,747Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,747Bean '(inner bean)#5dd3727c' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,747Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,759Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,760Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,767Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,768Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,770Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,771Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,772Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,773Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,774Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,784Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,786Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,787Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$572/0x00000008405dfc40] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,835Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,870Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,873Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,874Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$3581192e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:15,998Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,002Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$3fd34206] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,008Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,040Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,089===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-06 11:17:16,090===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-06 11:17:16,093Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,097Bean '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)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,113Bean '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)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,127Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e95daee5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,129Bean '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)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-06 11:17:16,348Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-06 11:17:16,348An older version [1.2.16] of the Apache Tomcat Native library is installed, while Tomcat recommends a minimum version of [1.2.30]logDirectJDKLog.java173
INFO2023-02-06 11:17:16,348Loaded Apache Tomcat Native library [1.2.16] using APR version [1.6.3].logDirectJDKLog.java173
INFO2023-02-06 11:17:16,348APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true], UDS [false].logDirectJDKLog.java173
INFO2023-02-06 11:17:16,348APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]logDirectJDKLog.java173
INFO2023-02-06 11:17:17,379OpenSSL successfully initialized [OpenSSL 1.0.2m 2 Nov 2017]logDirectJDKLog.java173
INFO2023-02-06 11:17:17,385Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-06 11:17:17,385Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-06 11:17:17,386Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-06 11:17:17,477Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-06 11:17:17,478Root WebApplicationContext: initialization completed in 3284 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-06 11:17:17,602 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-06 11:17:18,265{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-06 11:17:18,265dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-06 11:17:18,265dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-06 11:17:19,544 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-06 11:17:20,410Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-06 11:17:20,411Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-06 11:17:20,420Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-06 11:17:20,420Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-06 11:17:20,421Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-06 11:17:20,422JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-06 11:17:20,424Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-NV2FPM81675653440410' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-06 11:17:20,424Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-06 11:17:20,424Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-06 11:17:20,424JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@35d8a046setJobFactoryQuartzScheduler.java2293
INFO2023-02-06 11:17:21,605 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-06 11:17:22,718Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-06 11:17:22,788 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-06 11:17:23,639Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-06 11:17:23,655Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-06 11:17:24,986Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-06 11:17:25,001Started LinkageSystemApplication in 11.345 seconds (JVM running for 12.054)logStartedStartupInfoLogger.java61
INFO2023-02-06 11:17:25,008 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-06 11:17:25,027 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.45:8080/linkage-boot/ + Swagger文档: http://192.168.0.45:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-06 11:17:25,755Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-06 11:17:25,755Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-06 11:17:25,757Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-06 11:17:25,997Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-06 11:17:26,182Scheduler MyScheduler_$_DESKTOP-NV2FPM81675653440410 started.startQuartzScheduler.java547
INFO2023-02-06 11:17:33,754获取验证码,Redis key = b86b768807703d3ca933f95809c81961,checkCode = W57hrandomImageLoginController.java516
INFO2023-02-06 11:18:34,356获取验证码,Redis key = 181bf4dbdafb3779634968db1fddec1f,checkCode = sAtGrandomImageLoginController.java516
INFO2023-02-06 11:19:05,293获取验证码,Redis key = 7a882535ec7093e6290733986381dc9d,checkCode = C8RxrandomImageLoginController.java516
INFO2023-02-06 11:19:08,194获取验证码,Redis key = 9c24d354d2626de393446f4bc57b2eba,checkCode = 9zhBrandomImageLoginController.java516
INFO2023-02-06 11:19:10,003redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-06 11:19:10,548加密操作,Aspect程序耗时:12msaroundSensitiveDataAspect.java76
INFO2023-02-06 11:19:11,357【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-06 11:21:10,483获取验证码,Redis key = e0d65ddbce5cccce8d2f52a22dc3b840,checkCode = u8SBrandomImageLoginController.java516
INFO2023-02-06 11:21:49,883获取验证码,Redis key = 1f6abafa6e9d85839a8f787c9b2d1b29,checkCode = dQKarandomImageLoginController.java516
INFO2023-02-06 11:21:54,541【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43